我正在尝试制作结果表。
这是到目前为止该表的样子:
<?php
$row = mysql_query("SELECT * FROM table ORDER BY Votes DESC LIMIT 5");
while($sql = mysql_fetch_assoc($row)){
?>
<tr>
<td width="5%" align="center"><?php $rank=1; echo $rank;?></td>
<td width="15%" align="center"><img src="/pictures/<?php echo $sql['Picture']; ?>.png" height="50%"></td>
<td width="7%" align="center"><?php echo $sql['Votes']; ?></td>
</tr>
<?php } ?>
这是到目前为止的代码。我正在努力做到这一点,所以排名会自动增加。顺便说一句,排名不是来自数据库,但我只是希望它从 1 开始然后增加。请帮我。