gpt4 book ai didi

mysql - Mysqli 数据库的最后一条记录未显示

转载 作者:行者123 更新时间:2023-11-29 16:01:41 24 4
gpt4 key购买 nike

预先感谢您的帮助。

由于某种原因,当我从中检索信息时,我无法从数据库中获取最后一条记录来显示。

在我从 PHP 5 升级到 PHP 7.1 之前,这一切都工作得很好

    <?php
$servername = "xxxxxxxx";
$username = "xxxxxxxx";
$password = "xxxxxxxx";
$dbname = "xxxxxxxx";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

//Second Half

$sql="SELECT * FROM Online_Customers order by id DESC LIMIT 100";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {


?>

最佳答案

在 PHP 7 中删除了 fetch_assoc()

改变

$row = $result->fetch_assoc()

$row = $result->fetch_array()

关于mysql - Mysqli 数据库的最后一条记录未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56140450/

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