I am trying to pass a checkbox variable from one html form to another form and then to yet another form like this:
Form 1: ask the user to check some checkboxes, then click submit which executes form 2
Form 2: ask the user some more questions based on the previous form input, then click submit which executes form 3
Form 3: does stuff using input from form 1 and form 2
My question is: How can I pass the checkbox variable (which is an array) from form 1 to form 3?
I know how to access the variable in form 2, but I can't figure out how to pass the array from form 2 to form 3.
So, I guess what I'm asking is: How do you pass arrays accross multiple html forms?