Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 stackoverflow 和 google 上搜索了很多,但没有直接回答我的问题。这是一个非常基本的问题,所以我认为必须有一个非常简单的解决方案,但我真的找不到我的解决方案,可能是我的搜索关键字不完美。那么问题来了,
我现在正在使用 php 和 mysql。我有一个数据表,我只想将它们从最后一行显示到第一行,这就是我的问题。
试试这个
$result1 = mysql_query("SELECT * FROM job ORDER BY id DESC"); while($row1 = mysql_fetch_array($result1)) { echo $row1['id']." <br /> " ; }
输出 :
19 18 17 ......
// id 是你的列名