I have a form in page 1, if clicking the submit button, it passes a variable and an array by $_POST to page 2.
Page 2 has two forms: yes and no. If clicking 'no', it does nothing and return back to page 1; if clicking 'yes' button, I want it to load page 3 and begin to process the variable and array passed from page 1.
For the 'yes' button, I tried to use a variable to hold the value of $POST first, then put it in a hidden type variable in the form, but after it loads the page 3, the value in $POST from page 1 gets lost.
Does someone know how to solve this problem?
Thanks.