0
Hello, I am making an extract in which can be generated several pages, I used a very simple pagination system using limit
in querys of mysql.
The problem is that it is generated several pages and at the time of printing it just printed one at a time (which is right since they are different pages), but would have any way to print all these pages? Since I Gero an "expected" url like: page=1, page=2, page=3 and so on, would I be able to print all the generated pages? Because I have one $var
that contains the number of pages generated by the query. Would you have any solution for this? Or I will have to rethink this paging system?
you will have to create a different call for printing, generating the page with the full content as you want...
– rbz
In case I’m using a div to delimit the area to print, would I have to assign a page value to it and then call them all at once? <a href="javascript:printDiv('imprimirext')" >
– Wel