论坛表排名帮助(PHP / HTML)

时间:2016-07-30 20:41:04

标签: php html mysql html-table

我最近创建了一个包含显示数据的表格的论坛。

<div class="invis">
<div class="topic-top">
<table width="100%"><tr>
<td width="54%" style="color:white;">Topic</td>
</table>
</div>
<div class="topic-test">
<?php
while($thread=mysql_fetch_assoc($forum)){
echo "<tr>";
echo "<td><a href='threads?id=".$thread['id']."'
     class='btn'>".$thread['title']."</a></td><hr>";
echo "</tr>";
}
?>
</tr>
</table>
</div>

当它显示数据时,它首先变为最旧(按id)。如何让它首先显示最新?

1 个答案:

答案 0 :(得分:0)

使用MySQL在查询中按ID排序。您可以按照here条款阅读有关订单的更多信息。

ORDER BY id DESC

使用ORDER BY id ASC以相反的方式排序。