我在这里与 mysql_num_rows 问题作斗争,因为它总是返回 false。
$mail=$_POST[mail];
$q="select * from info where email='$mail'";
$query2=mysql_query($q,$con);
$rows = mysql_num_rows($query2);
if($rows > 0){
// Here we are checking if username is already exist or not.
echo "<script>newmail()</script>";
exit;
}
即使我$rows
从未添加过现有的电子邮件>0
,我也尝试过回显它,但它并没有给我任何东西,可能是因为它返回 false。
感谢您的关注。