I have a page with two forms.
<form name= "1" action="pageA" method= "post">
stuff
<input type = "submit" value = "submit form 1">
</form>
<form name= "2" action="pageB" method= "post">
stuff
<input type = "submit" value = "submit form 2">
</form>
My problem is I want form 2 to go to pageB with the stuff from form 1
can i make a single form with two buttons? how? or do I need to import the stuff from form 1 into form 2? how?
please help
<form name= "1" action="pageA" method= "post">
stuff
<input type = "submit" value = "submit form 1">
</form>
<form name= "2" action="pageB" method= "post">
stuff
<input type = "submit" value = "submit form 2">
</form>
My problem is I want form 2 to go to pageB with the stuff from form 1
can i make a single form with two buttons? how? or do I need to import the stuff from form 1 into form 2? how?
please help