Page is a not externally linkable
rainborick - 3:10 pm on Aug 26, 2012 (gmt 0)
Since you should accommodate users running with JavaScript disabled, your 'formcapture.pl' script should be modified to filter out these default values. I'd probably add some hidden fields to the <form> to pass the default values to the script so that you don't have to update the script every time you update the <form>. The script will know to look for and ignore those values. So you could have hidden fields like:
<input type="hidden" name="default-email" value="Enter Your Email Here">
Program the script to scan the submitted field names for "default-", extract the corresponding field name/value pairs and process the form data accordingly.