Jump to content

[SOLVED] limet query result (only thing i can think of for a name)


richiec

Recommended Posts

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?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.