Pagination in PHP
Posted: Wed Jan 13, 2010 9:30 am
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
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