Jump to content

PHP TOP 10, ORDER BY NOT WORKING!


Orionsbelter

Recommended Posts

Ok, am wanting to out put my top 10 forum posters but its not working here is the code

<?php
              $ex_query = mysql_query("SELECT * FROM `user_info` WHERE staff='0' ORDER BY `posts` DESC LIMIT 10");
		  while ($ex = mysql_fetch_array($ex_query)) {
              echo "
		  <tr>
                <td height='20' bgcolor='#333333'><div align='center'><a href='profile.php?user=$ex[username]'>$ex[username]</a></div></td>
              </tr>
                   ";
                 }?>

 

this out puts 10 people but not from highest to low or in an order help please!

Link to comment
https://forums.phpfreaks.com/topic/151763-php-top-10-order-by-not-working/
Share on other sites

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.