我得到了:
警告:mysqli_stmt :: bind_result():绑定变量数没有 匹配预备语句中的字段数 第73行的E:\ XAMPP \ htdocs \ account \ lib \ register.php
当我使用此代码时:
if($stmt = $conn -> prepare("INSERT INTO login(user, pass) VALUES(?, ?)")) {
/* Bind parameters s - string, b - blob, i - int, etc */
$stmt -> bind_param("ss", $user, $pw);
/* Execute it */
$stmt -> execute();
/* Bind results */
$stmt -> bind_result($user, $pw);
/* Close statement */
$stmt -> close();
$userId = $conn->insert_id;
}
我无法理解,为什么每次都会发生这种情况,我的代码片段出了什么问题? 问候:)
答案 0 :(得分:1)
您正在尝试bind_result
对未返回任何结果的语句。
删除此行。
$stmt -> bind_result($user, $pw);