richiec Posted July 25, 2007 Share Posted July 25, 2007 http://fearedwarlords.dks-gfx.com/ if you go there and look at the part which says "top potion hunters" it displays all found in the db but i only want it to return the top 10 this is my current code for that part of the site.. $query="SELECT * FROM `potions` ORDER BY (points+0) DESC"; $result=mysql_query($query) or die(hmm); $num = mysql_num_rows($result); $i=0; echo '<div align="center"> <table width="160" border="0"> <tr> </tr> <tr> </tr> '; while ($i < $num) { $rank = $i+1; $name = mysql_result($result,$i,"name"); $i++; echo "<tr> <td><div align=\"center\"><b><font color=#00FF00> $rank </font>- <font color=#00FF00>$name</font></div></td> </tr> "; } echo '</table> </div>'; does anyone have any ideas on how to only display the top 10? Quote Link to comment Share on other sites More sharing options...
The Little Guy Posted July 25, 2007 Share Posted July 25, 2007 $query="SELECT * FROM `potions` ORDER BY (points+0) DESC LIMIT 10"; Quote Link to comment Share on other sites More sharing options...
richiec Posted July 25, 2007 Author Share Posted July 25, 2007 thanks, that was simple cant believe i didnt figure it out but thanks :x Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.