blueman378 Posted December 12, 2007 Share Posted December 12, 2007 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>"; } ?> Quote Link to comment Share on other sites More sharing options...
blueman378 Posted December 12, 2007 Author Share Posted December 12, 2007 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 Quote Link to comment Share on other sites More sharing options...
farkewie Posted December 12, 2007 Share Posted December 12, 2007 <?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>"; } ?> Quote Link to comment Share on other sites More sharing options...
blueman378 Posted December 12, 2007 Author Share Posted December 12, 2007 thanks Quote Link to comment Share on other sites More sharing options...
farkewie Posted December 12, 2007 Share Posted December 12, 2007 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 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 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.