in reply to Re: An interesting form question
in thread An interesting form question

I meant you could send all the form 1 data to form two, via a script that writes the second form. So if i have an entry on the first form like so:
<input type="text" name="nick_name" size="10">

Once the first form is submitted, the script writes the name and value of this entry to the second form:
<input type="hidden" name="nick_name" value="ar0n">

And of course you'll have the second part of the form on page two as well.


-- ar0n