I am trying to set up a simple log in sign up system, but when I try to run this query:
$query = mysql_query("SELECT * FROM users WHERE username='$user'") or die(mysql_error());
I get the error:
Table 'users.users' doesn't exist
Is there any way I could fix this? I know I am putting in the right table name.
Thank you for your help!