I'm using the following SQL to determine the top 20 users:
$sql = 'SELECT * FROM users ORDER BY points DESC, username ASC LIMIT 20';
but how would I determine an indiduals rank outside of the top 20. I'm guessing it has something to do with the row, but how do I retrieve that value? Would it be something lile: SELECT ROW?
Thansk for any help,
~Oni.