我需要一些帮助来查找此代码的问题。 第 20 行就在评论$row
下方。我已经和其他人一起查看了这段代码,我们无法弄清楚该怎么做。代码最终应该显示三个值,由于此错误,我无法测试代码。我在第 20 行添加了注释,以便于查找。
<?php
$servername = "localhost";
$username = "dwilson2_410wrt";
$password = "3275626s";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT name, id, comment FROM review";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "id: " . $row["id"]. " - Name: " . $row["name"]. " " $row["comment"]
} // this is line 20
}
$conn->close();
?>
<!DOCTYPE html>
<html>
<head>
<title>My Gaming Products Site</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
有谁知道代码有什么问题?我知道它一定缺少了什么,但我找不到什么。就像我之前说的,第 20 行有一个评论,以便更容易找到。如果我需要添加更多代码,我将尝试这样做。
在此行(第 19 行)
echo "id: " . $row["id"]. " - Name: " . $row["name"]. " " . $row["comment"]
您需要用分号结束该行,否则 PHP 将只假设它只是echo
的一部分之后的所有内容。