| Store multiple selection from pagination info into single array
|
ktsirig

msg:4449356 | 12:30 pm on May 4, 2012 (gmt 0) | Hi I have a results page from a MySQL query and I have implemented pagination to present data in chunks of 25 per page in a table view (each row => 1 entry). My problem is that next to each data row, I have a selection checkbox, and if the user clicks on it, he can download the selected entries. This thing worked OK before I employed paginated view, when I presented all data in one page. Now, if I select e.g. 2 entries in page 1, then I jump to page 12 and select another 2 entries, if I click on the "Retrieve" button, I get only the last 2 entries (from the last page visited). How can I solve this problem? With JS? Can I use PHP only?
|
incrediBILL

msg:4449366 | 12:38 pm on May 4, 2012 (gmt 0) | You need to store the selections in a session variable and use that session variable to check the row again when you redisplay the row on the page.
|
|
|