Quote Originally Posted by Marthz View Post
Already have that, but that doesn't help me on knowing how to paginate it. I've never done it before, and there aren't really any good tutorials that I can find.

PHP Code:
$result mysql_query("SELECT * FROM Characters WHERE gm=0 ORDER BY Level DESC LIMIT 100"); 
Incase you wanted it.
Marthz, you are missing the point. See this:
Quote Originally Posted by penagate View Post
Use a LIMIT on your query to set upper and lower boundaries to the results.
Check this tutorials: http://www.phpeasystep.com/phptu/29.html

It is written using legacy mysql_* functions. After you get the idea, rewrite it using mysqli or PDO. And always avoid mysql_* functions.