Jump to content

[SOLVED] Why won't this work, sort into descending.


jack bro

Recommended Posts

I have a leaderboard which i want to sort highest to lowest by rankpoints top 10 players I have this code.

 

  $c=mysql_query("SELECT * FROM users ORDER BY rankpoints DESC LIMIT 10");

  while($d=mysql_fetch_object($c)){

  echo "<tr><td><a href='profile.php?viewuser=$d->username'>$d->username</a></td><td>$d->totalref</td><td>$d->rank</td></tr>";

 

Don't sort into order for some reason.

 

Jack.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.