I am attempting to build a image gallery that has a pagination script so the user will hit a next and previous button to go through all the images. There are about 9 images per page with about 100 total. Each image has a checkbox that has a variable that puts the value into an array.
<input type='checkbox' name='group[]' value='".$split[0]."'>
so the image names will be stored in the group array. The trick comes in when I want to keep the data being passed back from page to page. Not sure how to do this, I don't want to use a form and post that data. Right now i am passing the variables through a <a href.. link.
What is the best way to do this?