当尝试使用 PHP 的 mysqli 扩展将数据插入数据库时,您可能会遇到以下情况:遇到以下错误:
Warning: mysqli_stmt::bind_result(): Number of bind variables doesn't match number of fields in prepared statement in E:\XAMPP\htdocs\account\lib\register.php on line 73
当您在 INSERT 查询中为每个字段指定绑定变量,但查询不返回任何结果时,就会发生此错误。要解决此问题,您需要删除绑定结果的行:
<code class="php">$stmt->bind_result($user, $pw);</code>
修改后的代码片段将如下所示:
<code class="php">$conn->prepare("INSERT INTO login(user, pass) VALUES(?, ?)"); $stmt->bind_param("ss", $user, $pw); $stmt->execute();</code>
以上是为什么 INSERT 查询时出现“绑定变量的数量与准备语句中的字段数量不匹配”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!