gpt4 book ai didi

php mysqli 帮助,数据库中的第一行没有被返回?

转载 作者:行者123 更新时间:2023-11-29 08:42:41 25 4
gpt4 key购买 nike

这是我的代码

     <?php require_once 'connect.php';

$sql = "SELECT * FROM `db-pages`";
$result = $mysqli->query($sql) or die($mysqli->error.__LINE__);
while ($row = $result->fetch_assoc()) {
echo($row['pagetitle'].' - To edit this page <a href="editpage.php?id='.$row['id'].'">click here</a><br>');
}
}
?>

我已经向数据库中添加了更多行,除了数据库中的 id=1 之外,它还返回所有行。知道为什么吗?

最佳答案

尝试这样:

 while ($row = $result->fetch_assoc()) {
echo($row['pagetitle'].' - To edit this page <a href="editpage.php?id='.$row['id'].'">click here</a><br>');
}

关于php mysqli 帮助,数据库中的第一行没有被返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13347943/

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