Quote:
Originally Posted by Bugsy
SELECT Money FROM tbl WHERE steamid = 'STEAM_0:0:12345';
|
Even to build a top of players.
Best players:
PHP Code:
select * from players order by score desc limit 15
Worst players:
PHP Code:
select * from players order by score asc limit 15
__________________