我在PHP脚本中运行SQL时遇到了一些麻烦,特别是因为<?php
似乎在我的第一个>
而不是?>
结束时关闭了。具体来说,它停止在第一个回波线和>
上运行,而不是继续。我做错了什么?
<?php
$q = intval($_GET['q']);
$con = mysqli_connect('localhost','peter','abc123','my_db');
if (!$con) {
die('Could not connect: ' . mysqli_error($con));
}
mysqli_select_db($con,"ajax_demo");
$sql="SELECT * FROM user WHERE id = '".$q."'";
$result = mysqli_query($con,$sql);
echo "<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
<th>Hometown</th>
<th>Job</th>
</tr>";
while($row = mysqli_fetch_array($result)) {
echo "<tr>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['LastName'] . "</td>";
echo "<td>" . $row['Age'] . "</td>";
echo "<td>" . $row['Hometown'] . "</td>";
echo "<td>" . $row['Job'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>
此代码已从教程中复制/粘贴。
答案 0 :(得分:0)
您是否检查过数据库中的值?尝试
var_dump($result);
在while循环之前,看看你是否得到任何结果。