I have the MySQL command
SELECT Name FROM `User_Info` WHERE username="USERNAME" AND password="PASSWORD"
But I was wondering how I could specify multiple SELECTS.
For example:
SELECT Name AND email FROM `User_Info` WHERE username="USERNAME" AND password="PASSWORD"
Please Help!
You can separate return fields by commas.
You might want to consider looking for an SQL tutorial. This is not really the right forum for these types of questions.