$check = mysql_query("
SELECT username
FROM users
WHERE username = '$usercheck'
");
Above is my code, the problem I have is I can't create the table stonecrg_password.users
because of the period.
How can I change the code above so that it'll only show stonecrg_users
. Even if I change the code to:
$check = mysql_query("
SELECT username
FROM stonecrg_users
WHERE username = '$usercheck'
");
It will still show stonecrg_password.stonecrg_users
.