I have a mysql table called "users" that I i need to use for authentication. i have a html form that posts to a php file to check the username and password. I can't seem to get the my query to take the values from the form in the php file. Here is what I have:
"SELECT * FROM user WHERE username = 'form.username' ";
I plan to check the password and some other information with some "if" statements.
to my question.. can you tell me what is wrong with my query?
-bill