Hello, I am making an extract in which you can generate several pages, I used a very simple paging system using limit
in the querys of mysql . >
The problem is that several pages are generated and at the time of printing it only printed one at a time (which is correct since they are different pages), but would you have some way to print all those pages? Since I generate an "expected" url like: page = 1, page = 2, page = 3 and so on, would I be able to print all generated pages? Because I have a $var
that contains the number of pages generated by the query. Was there any solution to this? Or do I have to rethink this paging system?