Hi,
I have some pages being paginated by PHP. The pages contain form checkboxes. On the final page there is a "submit" button.
I need each pages selected checkboxes displayed when submit button is pressed.
How do I collect all the checkboxes values from each page?
I was thinking of trying javascript "OnUnload" handler to file off some code which would copy the values in each pages checkbox array to a session. When the next pages appears, and the viewer selects more checkboxes, these new values would then be added to the existing array held in the session variable.
Does an onUnload handler seem like a reasonable idea? I assume I would I need to 'array_push' the new values into the session array? Am I overlooking something?
Can anyone give me some help?
Thx, Andy.