當嘗試使用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中文網其他相關文章!