i am using a php script for this but the registeration page for my game is comin up with an error...
Line: 70
Char: 20
Error: Undertermined String Constant
and that is... the L in @mysql
At: $theiremail = @mysql_fetch_array(mysql_query("SELECT * FROM `players` WHERE `email`='$email'"));
}
$theirname = @mysql_fetch_array(mysql_query("SELECT * FROM `players` WHERE `username`='$name' AND `deleted`!='yes'"));
if ($theirname[id]) {
echo "The provided username is already in use.";
exit;
}
$theiremail = @mysql_fetch_array(mysql_query("SELECT * FROM `players` WHERE `email`='$email'"));
if ($theiremail[id]) {
echo "You already have an account!";
exit;



Reply With Quote

Bookmarks