Getting the following error, no idea what it means or how to fix it.
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/poetgos7/thebsnetwork/signup.php on line 91
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/poetgos7/thebsnetwork/signup.php on line 95
Database Problem, please contact Site admin
The corresponding PhP Code is as follows
if(mysql_num_rows(mysql_query("SELECT * FROM USERS WHERE UNICK = '$uname'"))){
$msg=$msg."User Name already exists. Please try another one<BR>";
$status= "NOTOK";}
if(mysql_num_rows(mysql_query("SELECT * FROM USERS WHERE UEMAIL = '$email'"))){
$msg=$msg."Email is already registered. Only one account per email is allowed.<BR>";
$status= "NOTOK";}
Any ideas? Please help thanks!