gpt4 book ai didi

php - 回显表的最后两列

转载 作者:行者123 更新时间:2023-12-04 04:48:12 25 4
gpt4 key购买 nike

我有一张 table ,我想回显我的表格的最后两行,我使用了下面的代码,但只显示了最后一行,有什么问题。

$result1 =(mysql_fetch_array(mysql_query("SELECT * FROM $table ORDER BY id DESC LIMIT 2")));

Print $result1['time'];

最佳答案

对于 2 行或更多行,您需要循环它

$sql = mysql_query("SELECT * FROM $table ORDER BY id DESC LIMIT 2")

while($row=mysql_fetch_array($sql))
{
echo $row['time']."<br>";
}

关于php - 回显表的最后两列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17857797/

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