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
Pagination in PHP
Moderator: General Moderators
Re: Pagination in PHP
Do a search - both of the forums and of Google.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Pagination in PHP
Especially since the exact same question is still on the front page of this forum.