Page 1 of 1

Pagination in PHP

Posted: Wed Jan 13, 2010 9:30 am
by mariolopes
Hi
I need to print one table with pagination. How can I achieve pagination? Any ideas?
Here is my code
<?php
while($row=mysql_fetch_array($result)){
?>
<tr>
<td><?php print $row['Nome'];?></td>
<td><?php print $row['Idade'];?></td>
</tr>
<?php
}
?>
Thank you

Re: Pagination in PHP

Posted: Wed Jan 13, 2010 9:54 am
by pickle
Do a search - both of the forums and of Google.

Re: Pagination in PHP

Posted: Wed Jan 13, 2010 11:18 am
by JNettles
Especially since the exact same question is still on the front page of this forum.