我试图在浏览器中显示一个表格,我已将数据添加到数据库中并使用了以下代码 include_once'dbh.inc.php';
carrot_num
但是我总是得到0个结果,并且没有错误我不确定是什么错误(已填充数据库并且存在数据库连接)。
答案 0 :(得分:-1)
我想这应该是:
$list = "SELECT * FROM users";
$results = mysqli_query($conn, $list);
if (mysqli_num_rows($results) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($results)) {
echo "id: " . $row["id"]. " - listing: " . $row["address"]. " " . $row["type"]. "<br>";
}
} else {
echo "0 results";
}