Jump to content

[SOLVED] mysql +select only 20 results


blueman378

Recommended Posts

hi guys i have a code which selects data from a mysql database and orders it by gplays,

basically i want this to only select 20 results with the highest gplays,

 

any ideas?

 

<?php
    global $database;
    $q = "SELECT * FROM " . Games . "
          ORDER BY `gplays` ASC
         ";   
    $result = $database->query($q) or die("Error: " . mysql_error());
    /* Error occurred, return given name by default */
    $num_rows = mysql_numrows($result);
    if( $num_rows == 0 ){
      return 'Game Not Found!';
    }
    while( $row = mysql_fetch_assoc($result) ) {
    echo "<tr>
<td class='topgamerow'>
<a href='showgame.php?game=".$row['gName']."'>
".$row['gName']."</a>
</td><td class='topgamerow' align='right'>
".$row['gplays']."
</td></tr>";
    }

?>

Link to comment
Share on other sites


<?php
   global $database;
   $q = "SELECT * FROM " . Games . "
         ORDER BY `gplays` ASC LIMIT 20
        ";   
   $result = $database->query($q) or die("Error: " . mysql_error());
   /* Error occurred, return given name by default */
   $num_rows = mysql_numrows($result);
   if( $num_rows == 0 ){
     return 'Game Not Found!';
   }
   while( $row = mysql_fetch_assoc($result) ) {
   echo "<tr>
<td class='topgamerow'>
<a href='showgame.php?game=".$row['gName']."'>
".$row['gName']."</a>
</td><td class='topgamerow' align='right'>
".$row['gplays']."
</td></tr>";
   }

?>

Link to comment
Share on other sites

inserting

LIMIT 0, 20

would select only twenty results but would it select thehighest ones? or jut the first entrys in the database, based on th fact that the select orders by gplays

 

Beat me to it!1  :P plus please follow blueman378  and add the "LIMIT 0, 20" not just LIMIT 20,

 

if gplays is a number then you should get the 20 you want

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.