我试图在输入框内的数据库中显示项目的特定部分(例如名称),但我得到的只是输入框内的字母S,而不管它是什么部分。
<!DOCTYPE html>
<html>
<body>
<?php
$servername = "localhost";
$username = "WebAssignment";
$password ="qwer12";
$dbname = "webassigment";
// Create connection
$conn = new mysqli($servername, $username,$password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$selectedItem = "SELECT * FROM menu WHERE Food_Name = christine pocock";
?>
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>">
Food name<br> <input type="text" name="name" value="<?php echo htmlspecialchars($selectedItem["Food_Category"]); ?>"/>
</form>
</body>
</html>
答案 0 :(得分:1)
我建议你看看这个tutorial,因为我从你的代码中可以看到,你只有一个你甚至没有执行过它的SQL语句,也没有提取它。
好的代码是:
if(!$result = $conn->query($selectedItem)){
die('There was an error running the query [' . $db->error . ']');
}
$row = $result->fetch_assoc();
然后检索您刚刚执行的值$row['ValueName'];