I have one table ( members ) and five columns ( username , password , FirstName , LastName , Email )
I need to get the Email for the user admin. How would this be done?
I have one table ( members ) and five columns ( username , password , FirstName , LastName , Email )
I need to get the Email for the user admin. How would this be done?
Do you know what the username is of the admin? If so you can do the following:
SELECT `Email`
FROM `members`
WHERE `username` = {$username}