- 1
How can I create a php pagination.
I need a pagination style with the number of pages, previous and next link. Please help. Thanks.
6 Respostas
+ 2
You use mysql?
+ 2
<a href="?page=<?php echo $_GET['page'] - 1 ?>">Previous</a>
<a href="?page=<?php echo $_GET['page'] + 1 ?>">Next</a>
0
Yes I did
0
Thanks it worked but how can I create the "next and previous" link for the pagination?
0
Thanks man!



