pizzaman
04-24-2005, 11:23 AM
Hi,
I am making this form with multiple pages (actually same .php page, but different layout as the user clicks continue)
Ya, so I have the form
<form action="theoryform.php" method = "get">
[...]
<input type ="text" name = "foo[]" value="" />
[...]
<input name="submit" type = "submit" value = "Continue" /></form>
The data in $_GET['foo'] transfers to the next page correctly, but in the next page i like to add more info from user to foo[]. But when I click on continue again, the info from foo[] from first page no longer exists.
So my question is how do I forward foo[] across mutliple pages? Thanks!
-pizzaman
I am making this form with multiple pages (actually same .php page, but different layout as the user clicks continue)
Ya, so I have the form
<form action="theoryform.php" method = "get">
[...]
<input type ="text" name = "foo[]" value="" />
[...]
<input name="submit" type = "submit" value = "Continue" /></form>
The data in $_GET['foo'] transfers to the next page correctly, but in the next page i like to add more info from user to foo[]. But when I click on continue again, the info from foo[] from first page no longer exists.
So my question is how do I forward foo[] across mutliple pages? Thanks!
-pizzaman