Hellow php masters ! I need help to Number my results from SQL in table.I want to do it in pages.. thanks $query = mysql_query("SELECT `id` , `username`,`point` FROM `jos_users` ORDER BY `point` DESC")or die(mysql_error()); while ($row = mysql_fetch_array($query)) { ?> <table border="0" width="90%" > <tr> <th width="568" scope="username"><b><a href="http://pechelish.com/vote.php?id=<? echo $row['id'] ?>"><? echo $row['username'] ?></a> </b></th> <th width="169" scope="point"><b> <? echo $row['point'] ?></b> points</th> </tr> </table> <? } PHP:
Read up on php/mysql pagination, I'm sure they'll be quite alot of examples/tutorials out their, if you do a search via google.