我有这个 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())