下面是一段代码片段,它从我的数据库中获取所有数据并对它们进行排序并显示它们,它目前按照票数排列它们一直到10票,看起来好像它只是排序了第一个数字,
<tr bgcolor="transparent">
<td colspan="3" class="pages"><?php echo $pages_site; ?></td>
</tr>
<?php foreach($members as $member){
$votes =htmlentities($member['votes']);
$id =htmlentities($member['id']);
$url =htmlentities($member['first_name']);
$sname =htmlentities($member['last_name']);
$status =htmlentities($member['status']);
$desc =htmlentities($member['bio']);
$banner =htmlentities($member['image_location']);
?>
<tr>
<td class="site"></td>
<td class="site_th"><A href="<?php echo $url ?>"><?php echo $sname ?><br><? echo $desc ?></br><a href="<?php echo $url ?>"><img src="<? echo $banner ?>" style="max-width:500px;max-height:200px";></A></td>
<td class="vote_th">VOTES:<?php echo $votes ?><br><a href="vote.php?id=<?php echo $id ?>">VOTE!</a> </td>
</tr>
<?
}
?></table>
我已经尝试将投票移到数据库的顶部,并尝试将投票的defult值更改为00而不是0但是这使得它显示01而不是仅仅1,我宁愿避免如果可能