我正在尝试通过PHP查询数据库,并且已经按照教程进行了操作,但是我在网页上显示echo
语句的方式出现了异常错误。
似乎被打破的代码部分是:
$rowNum=mysql_num_rows($query);
echo "<p>There are ".$rowNum." people matching your results</p>";
echo "<table><tr><th>Name</th><th>Age</th><th>Gender</th></tr>";
while($row = mysql_fetch_array($query, MYSQL_ASSOC)) {
echo "<tr><td>".$row['name']."</td>".
"<td>".$row['age']."</td>".
"<td>".$row['gender']."</td></tr>";
}
echo "</table>";
而不是在一个漂亮的表中显示数据,它输出very messed up page。我以前从未在php中看到过这样的错误,我想知道你们中是否有人知道修复它。谢谢!
请注意:我正在使用网络服务器。我不只是制作一个.php
页面并以chrome格式打开它。