Help me
Posted: Fri Jun 27, 2003 10:25 am
$query = "select * from userid where username=".$_REQUEST['username'];
$result=mysql_db_query($query);
if(mysql_num_rows($result)==1)
{
header("Location: fail3.php");
exit;
}
Execute the above code, no error message, but it seem does not work.
Thank you
$result=mysql_db_query($query);
if(mysql_num_rows($result)==1)
{
header("Location: fail3.php");
exit;
}
Execute the above code, no error message, but it seem does not work.
Thank you