1

我无法在 db 中获得对 INSERT 的 INSERT 查询。我没有收到任何错误消息,并且正在遵循教程,任何帮助将不胜感激。

$query = "INSERT INTO rooms (room_title,room_description,monthly_rate,prop_name,prop_description) VALUES ( ?, ?, ?, ?, ?)";

$stmt = mysqli_prepare($dbc,$query);
//$stmt = mysqli_query($dbc, $query);
if($stmt == false) {
  die("<pre>".mysqli_error($dbc).PHP_EOL.$query."</pre>");
}

mysqli_stmt_bind_param($stmt,"ssiss",$pn,$d,$p,$ppn,$ppd);
mysqli_stmt_execute($stmt);
//mysqli_stmt_close($stmt);
// Check the results...
if (mysqli_stmt_affected_rows($stmt) == 1)

  {

    echo'<p>The room has been added.</p>';                  
    // Clear $_POST:
    $_POST = array();

  }

mysqli_stmt_close($stmt);

} // End of $errors IF.
// End of the submission IF.

因为它没有回显“房间已添加”我怀疑问题出在mysqli_stmt_affected_rows($stmt) == 1

4

1 回答 1

0

尝试这个

    if ($stmt = mysqli_prepare($dbc, "INSERT INTO rooms (room_title,room_description,monthly_rate,prop_name,prop_description) VALUES ( ?, ?, ?, ?, ?)")) {

 mysqli_stmt_bind_param("ssiss",$pn,$d,$p,$ppn,$ppd);

mysqli_stmt_execute($stmt);

} printf("Error: %s.\n", mysqli_stmt_error($stmt));
于 2013-07-26T22:53:56.047 回答