虽然循环最大

时间:2013-06-17 18:25:26

标签: php mysql

<?php
$find_popular = mysql_query("SELECT MAX(id) AS views FROM trends LIMIT 5");

while($popular = mysql_fetch_assoc($find_popular)) {
echo $popular['views'] . "<br />";
}
?>

是否可以输出序列中的下一个结果? 谢谢:))

编辑:有人发布了正确答案,但他们删除了它,谢谢他们帮助我:D

1 个答案:

答案 0 :(得分:1)

不是。 Max仅查找最大值。试试这个:

<?php
$find_popular = mysql_query("SELECT id FROM trends ORDER BY id DESC LIMIT 5");

while($popular = mysql_fetch_assoc($find_popular)) {
echo $popular['id'] . "<br />";
}
?>