Quote:
Originally Posted by [L3th4l]
PHP код:
$order_query = mysql_query( "SELECT * FROM `accounts` ORDER BY `kills` DESC LIMIT 5" );
while($order_fetch = mysql_fetch_assoc( $order_query ) )
echo( $order_fetch['username'] . ":" . $order_fetch['kills'] . " kills. <br />" ) ;
|
Ah, thank you very much for picking that up. I didn't notice I missed a important keyword in the syntax.