-1

サイトの別のユーザーが私に提供するのに十分役立つこのPHPコードがあります。データベース内のエントリをユーザーがフォームに入力したものと照合しようとし、それらの仕様に一致する画像をエコーアウトします。

(最初の 4 行でデータベース情報を定義しますが、このサイトはそれらを書き出したくありません)

// Errors
$error = array();
if (!isset($_POST['submit']))
    $error[] = "The form was not set.<br />";

// Here we check if each of the variable are set and have content
if (!isset($_POST['gender']) || strlen($_POST['gender']) == 0)
    $error[] = "You must fill the gender field.<br />";

if (!isset($_POST['hair']) || strlen($_POST['hair']) == 0)
    $error[] = "You must fill the hair field.<br />";

if (!isset($_POST['height']) || strlen($_POST['height']) == 0)
    $error[] = "You must fill the height field.<br />";

if (!isset($_POST['body']) || strlen($_POST['body']) == 0)
    $error[] = "You must fill the body field.<br />";

if (empty($error))
{
    $con = mysqli_connect($db_host, $db_user, $db_pass, $db_name);
    if ($con->connect_error)
        die('Connect Error (' . mysqli_connect_errno() . ') '. mysqli_connect_error());

    // Here we prepare your query and make sure it is alright
    $sql = "SELECT * FROM `table` WHERE gender=? AND hair=? AND height=? AND body=?";
    if (!$stmt = $con->prepare($sql))
        die('Query failed: (' . $con->errno . ') ' . $con->error);

    // Here we define the field types with 'ssss' which means string, string, string
    // and also set the fields values
    if (!$stmt->bind_param('ssss', $_POST['gender'], $_POST['hair'], $_POST['height'], $_POST['body']))
        die('Binding parameters failed: (' . $stmt->errno . ') ' . $stmt->error);

    // Now we finally execute the data to update it to the database
    // and if it fails we will know
    if (!$stmt->execute())
        die('Execute failed: (' . $stmt->errno . ') ' . $stmt->error);

    // Now we read the data
    while ($row = $stmt->fetch_object())
    {
        $pic = $row->picture;
        echo $row->picture, "\n";
    }
    $stmt->close();
    $con->close();
}
else
{
    echo "Following error occurred:<br />";
    foreach ($error as $value)
    {
        echo $value;
    }
}
?>

48行目にこのエラーメッセージが表示されます

Fatal error: Call to undefined method mysqli_stmt::fetch_object() in /home/content/...

このコード行は次のとおりです。

// Now we read the data
while ($row = $stmt->fetch_object())
4

1 に答える 1