Title: USER FEEDBACK, HTML FORM Post by: Daniel Franklin on September 26, 2007, 03:37:59 PM As usual we have a tag called, illuminatingly, <form> </form>. Whatever lies within belongs to this tag and is going to be a part of its definition as a whole. The basic infrastructure of a user feedback form manifests itself like this: <form name="myform" method="post" action="process_form.pl"> <input type="hidden" name="email_ad" value="your email id goes here."> <input type="hidden" name="subject" value="put your subject here."> <input type="hidden" name="redirect_page" value="thankyou.html"> Please enter your name: <input type="Text" name="Vname" size="25"> Please enter your email: <input type="Text" name="Vemail" size="25"> |