绑定变量数不匹配 - sql insert

时间:2015-02-05 14:23:01

标签: php sql variables insert bind

我得到了:

  

警告: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;
} 

我无法理解,为什么每次都会发生这种情况,我的代码片段出了什么问题? 问候:)

1 个答案:

答案 0 :(得分:1)

您正在尝试bind_result对未返回任何结果的语句。

删除此行。 $stmt -> bind_result($user, $pw);