Jump to content

SQL statement question


boblan66

Recommended Posts

I would like to know if I'm thinking in the right direction?

 

I recently was looking at sample code that gave this as an example:

 

$sql_email_check = mysql_query("SELECT email_address FROM users WHERE email_address='$email_address'");
$sql_username_check = mysql_query("SELECT username FROM users WHERE username='$username'");

 

If I learned correctly while reading about SQL, the two lines of code could have been one. Such as:

 

$sql_email_check = mysql_query("SELECT email_address FROM users WHERE email_address='$email_address' AND username='$username'");

 

Is this correct?

 

Link to comment
https://forums.phpfreaks.com/topic/222844-sql-statement-question/
Share on other sites

I am creating a membership site for my wife's high school class. This code was part of  an example for checking if the username and password was valid.

 

The validity of usernames, emails, and passwords should be checked server-side (PHP).

 

You also may want to use an OR rather than an AND because you would want to check if either the email or username already exists.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.