Sorry, definately confused 😕
This is my full form:
<form action="/cgi-bin/formmail.pl" method="POST" name="form1">
<input type="hidden" name="recipient" value="myname@mydomain.com">
<input type=hidden name="subject" value="Intranet submission">
<input name="redirect" type="hidden" id="redirect" value="http://www.mydomain.com/directory/home.php">
<textarea name="comments" cols="30" rows="4" wrap="virtual" class="textArea4lines" tabindex="3" value="Your message...">Your message...</textarea>
<input name="realname" type="text" class="textboxSmall" tabindex="1" value="Your Name...">
<input name="submit" type="submit" tabindex="4" value="Send!"></form>
As you can see there are a couple hidden fields who's values are hardcoded into the page.
The fields "comments" and "realname" are the fields getting erased when the page refreshes and the person loses what they've typed.
I don't know how more hidden fields can prevent "comments" and "realname" from losing their values. Keep in mind that when the page refreshes, the form doesn't get a chance to send, so I don't know how I'd get the variables from $_Post.
Could you explain just a little bit further...?:rolleyes: