所以这是我在MYSQLi工作的第一天(从mysql转换),我在登录脚本时遇到问题,我检查了重复的电子邮件:
这是我得到的:
$email = mysqli_escape_string($_POST['email']);
$stmt=$mysqli->prepare("SELECT username from users WHERE email=?");
$stmt->bind_param('s',$email);
$stmt->execute();
$nrows1=$mysqli->num_rows;
echo $nrows1;
$stmt->close();
if ($nrows1>0) {
$_SESSION['loggedin'] = false;
$_SESSION['error'] = "Our records indicate that there is already an account registered with that email. Please use the 'forgot your password' link below if you cannot remember your password.";
header('Location: registration.php');
echo "running insisde duplicate email";
exit();
}
当回显$ nrows1时,我一直返回0行或空变量。当我直接在sql中输入查询时,它工作正常。我似乎正在关注这些文件,并用它修补了一堆。
我也使用了受影响的行函数,但我认为这不适合SELECT语句,对吗?
真诚感谢您的帮助,非常感谢。
答案 0 :(得分:1)
执行后,您需要使用mysqli_stmt_store_result()
来获取结果集,因此它将知道有多少行。此外,您应该将$num_rows
应用于语句,而不是连接。
$stmt->execute();
$stmt->store_result();
$nrows1 = $stmt->num_rows;