gpt4 book ai didi

php - 表不显示数组查询中的任何结果

转载 作者:行者123 更新时间:2023-11-29 23:31:41 27 4
gpt4 key购买 nike

我正在尝试在网页上显示数据库的结果。使用this example ,我想出了下面这段php代码:

<?php

$con=mysqli_connect("217.199.187.70","cl52-domains","######","cl52-domains");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$results = mysqli_query($con, "SELECT * FROM domains");

echo "<table border='1'>
<tr>
<th>ID</th>
<th>Domain</th>
<th>Address</th>
<th>Price</th>
</tr>";

while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['id'] . "</td>";
echo "<td>" . $row['domain_name'] . "</td>";
echo "<td>" . $row['domain_address'] . "</td>";
echo "<td>" . $row['price'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>

但是,当我刷新网页时,它显示表格标题(没有错误),但显示 0 个结果。这是我的 table 规范:

enter image description here enter image description here

有人可以告诉我为什么我没有得到任何结果吗?

最佳答案

改变

while($row = mysqli_fetch_array($result))

while($row = mysqli_fetch_array($results))

您可能在引用 $results 变量时犯了一个拼写错误。

关于php - 表不显示数组查询中的任何结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26526674/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com