Hi,
I'm gonna ask my users to fill a form.
When they click on CONTINUE, they'll be asked to fill another form.
Once they submit the second page, then all the processing happens (mysql stuff).
My question is,
On the second page, do I really have to do
<input type='hidden' name='name' value='$name'>
Manually for all the fields the user entered?
Or is there an easier way to POST again all that was previously posted?
(and add the new stuff)
Thank You,
Nathan