In short, a leaderboard.
The person with the highest coins wants to be listed, first. listing the top 10 only, based on the highest coin count joined with their username.
This lists the usernames, but not sure how to get their coins count, as well as ascend them in a top 10 formation.
<?php
$query = mysql_query("SELECT username FROM `users`");
echo '<table>';
while($rowtwo = mysql_fetch_array($query)){
echo '<tr>
<td><font size="2" face="Lucida Sans Unicode" color="red">'.$rowtwo['username'].'</td>
</tr>';
}
echo '</table>';
?>