beyondflash
Programmer
I have multiple items that I don't want selected in my select statement...I can get ONE to work here is a sample:
$sql = "SELECT * FROM login
WHERE (Email = '$email') HAVING Crsnum != 1 ORDER BY ID DESC";
This will not select any Crsnum that =1...
The problem I am having is I have multiple crsnum's that cannot be selected example:
1,4,9,17,19
How do I create the SELECT statement to omit those index numbers from being selected??
Thanks.
$sql = "SELECT * FROM login
WHERE (Email = '$email') HAVING Crsnum != 1 ORDER BY ID DESC";
This will not select any Crsnum that =1...
The problem I am having is I have multiple crsnum's that cannot be selected example:
1,4,9,17,19
How do I create the SELECT statement to omit those index numbers from being selected??
Thanks.