我有一个显示为列表格式的提交表单,我想知道我能做些什么来使列表只显示一定数量的最新提交信息。我正在对其进行测试,目前该列表在一个页面上,仅显示 50 多个提交,将页面拉得很长。
<?php
$query='select * from article order by `article`.`time` DESC';
$result=mysql_query($query);
echo '<table width="600px">';
while($row = mysql_fetch_array($result))
{
echo "<td><a href='".$row['url']."'>".$row['title']."</a></td> <td>".$row['description']."</td><td>".$row['type']."</td></tr>";
}
echo '<table>';
?>