Thanks! That is what I was looking for.
In trying to implement this, I am running into a small problem. When the badformhandler script sends the form data back to the 'original' form, it keeps missing two of the fields (realname and email) and returning the other three. I have gone over the form formatting and am pretty certain they are written as specified; here is the html:
Code:
<p class="fieldwrap">
<label for="realname"><strong>Name</strong></label>
<input class="fmtext" id="realname" name="realname" type="text" value="" />
</p>
<p class="fieldwrap">
<label for="email"><strong>Email</strong></label>
<input class="fmtext" id="email" name="email" type="text" value="" />
</p>
<p class="fieldwrap">
<label for="address">Address</label>
<input class="fmtext" id="address" name="address" type="text" value="" />
</p>
<p class="fieldwrap">
<label for="phone">Phone</label>
<input class="fmtext" id="phone" name="phone" type="text" value="" />
</p>
<p class="fieldwrap"><label for="mesg"><strong>Message</strong></label>
<textarea class="fmtextarea" cols="20" rows="6" id="mesg" name="mesg"></textarea>
</p>
Can't figure out what is wrong! Anything jumping out as a mistake?
Bookmarks