1. ホーム
  2. php

[解決済み] 重複]でのbooleanに対するメンバ関数execute()の呼び出し

2022-02-02 01:38:55

質問

私のhtml :

 <form action="rent.php" method="post"><pre>
        Email : <input  type="text" name="email">
        Message : <input type="text" name="msg_text">
                <input type="submit" value="Rent it">
    </pre></form>

私のrent.phpファイル :

<?php
 require_once 'login.php';
   $conn = new mysqli($hn, $un, $pw, $db);
   if ($conn->connect_error) {
    die($conn->connect_error);
}
    $query = "SET NAMES utf8";
    $result = $conn->query($query);
    if (!$result) {
        die($conn->error);
    }

    $req = $conn->prepare('INSET INTO renter (email, msg_text) VALUES(?, ?)');
    $req->execute(array($_POST['email'], $_POST['msg_text']));

    header('Location: menu.php');

投稿しようとすると、エラーが発生します。致命的なエラーです。

email, msg_text は varchar 型です。

解決方法は?

mysqli->prepare を返すこともできます。 FALSE (チェック http://php.net/manual/en/mysqli.prepare.php )でエラーが発生した場合。あなたの問題は、あなたが INSET ではなく INSERT .