CGI FORM SYNTAX


formreq - form delivery by e-mail
It accepts forms via either GET or POST methods, and allows e-mail to addresses outside our server's domain.

<FORM METHOD="POST" ACTION="http://forms.max.net/cgi-bin/formreq">
<INPUT TYPE="HIDDEN" NAME="mailto" VALUE="mail@yourdomain.com">
<INPUT TYPE="HIDDEN" NAME="if_ok" VALUE="http://yourdomain.com/thanks.htm">
<INPUT TYPE="HIDDEN" NAME="if_error" VALUE="http://yourdomain.com/error.htm">

Line 1 - The first line calls the script
Line 2 - The second line tells the script where to mail the results to.
Line 3 - The third line directs to your thank you page - you must make a
thanks.htm page.
Line 4 - The fourth line directs to a error page if any - you must make
an error.htm page.

Two optional lines are:

<INPUT TYPE="HIDDEN" NAME="subject" VALUE="your subject line">


Line 5 - The VALUE will allow you to specify what the subject line says.
<INPUT TYPE="TEXT" NAME="MAIL_IS_FROM">

Line 6 - This will display a field for the return email address in your
form, which will show as the return email address in the mail you receive.