This Should Do It
If a relative URL is used in:
<form method="POST" action="">
Instead of:
<form method="POST" action="http://ww8.website.com">:
Then $variable replacements may be used on the next page to fill in what your visitor typed on the previous page.
Form1
<input type="text" name="first">
Form2
<input type="text" name="first" value="$first">
That should take care of the issue, of course you should validate the fields to ensure that they are filled out.
|