View Single Post
  #3 (permalink)  
Old 05-17-2005, 04:29 PM
webmasterjunkie webmasterjunkie is offline
WebProWorld Pro
 
Join Date: Aug 2004
Location: Maryland
Posts: 219
webmasterjunkie RepRank 0
Default 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.
Reply With Quote