I am building an image gallery and I want the user to be able to select a checkbox per image. I also want to carry this variable through basic link. The reason I am doing this is I have a large amount of images loading dynamically with a pagination script.
My first thought would to put these into an array like this....
<input type='checkbox' name='group[]' value='$imageName[$i]'>
Is it possible to pass the array like this in the links..
<a href='page.php?group=$group[]>link name</a>
If not, is there a better way. I want to avoid using forms if possible.
Thanks for your help.