Here are two examples of how you might use a remotely- hosted form script to carry out a survey. On a web page, the forms will look identical, but users' submissions will be processed by two different scripts on two different servers. As you might expect, the Response-O-Matic script is the more versatile. It has many more hidden field options. =========================================================== EXAMPLE FORM 1: RESPONSE-O-MATIC <FORM ACTION="http://www.response-o-matic.com/cgi-bin/rom.pl" METHOD="POST"> <INPUT TYPE="hidden" NAME="your_email_address" VALUE="szs@nospam.net"> <INPUT TYPE="hidden" NAME="your_name" VALUE=Sun Zoom Spark> <INPUT TYPE="hidden" NAME="email_subject_line" VALUE="Info about my web site"> <INPUT TYPE="hidden" NAME="required_fields" VALUE="visitor_email_address,site_url"> <INPUT TYPE="hidden" NAME="field_order" VALUE="visitor_name,visitor_email_address,site_url,site_title,site_description,how_easy_was_it,comments"> <INPUT TYPE="hidden" NAME="thank_you_title" VALUE="Thank you for filling out the form"> <INPUT TYPE="hidden" NAME="return_link_url" VALUE="http://www.netjunk.com/users/websitebyemail/index.html"> <INPUT TYPE="hidden" NAME="return_link_name" VALUE="WebSite-By-Email Home Page"> <P><B>1.</B> Your name or pseudonym:<BR> <INPUT TYPE="TEXT" NAME="visitor_name" SIZE="60"></P> <P><B>2.</B> Your email address <I>(required)</I>:<BR> <INPUT TYPE="text" NAME="visitor_email_address" SIZE="60"></P> <P><B>3.</B> Your web site URL <I>(required)</I>:<BR> <INPUT TYPE="text" NAME="site_url" SIZE="60" VALUE="http://"></P> <P><B>4.</B> Title of your web site:<BR> <INPUT TYPE="text" NAME="site_title" SIZE="60"></P> <P><B>5.</B> Please enter a brief description of your web site:<BR> <TEXTAREA COLS="40" ROWS="6" NAME="site_description"></TEXTAREA> </P> <P><B>6.</B> Please state how easy it was to set up your web site by email:<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="very easy">very easy<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="easy">easy<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="OK">OK<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="difficult">difficult<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="very difficult">very difficult</P> <P><B>7.</B> If you have any comments on setting up a web site by email, please enter them here:<BR> <TEXTAREA COLS="40" ROWS="6" NAME="comments"></TEXTAREA> </P> <P> <INPUT TYPE="SUBMIT" NAME="Submit1" VALUE="Submit"></P> </FORM> =========================================================== EXAMPLE FORM 2: ANYFORM <FORM ACTION="http://www.uky.edu/cgi-bin/cgiwrap/~johnr/AnyForm.cgi" METHOD="POST"> <INPUT TYPE="hidden" NAME="AnyFormMode" VALUE="Mail"> <INPUT TYPE="hidden" NAME="AnyFormDisplay" VALUE="http://www.netjunk.com/users/websitebyemail/thanks02.html"> <INPUT TYPE="hidden" NAME="AnyFormTo" VALUE="szs@nospam.net"> <INPUT TYPE="hidden" NAME="AnyFormFrom" VALUE="AnyForm@nil"> <INPUT TYPE="hidden" NAME="AnyFormSubject" VALUE="WebSite-By-Email Survey"> <P><B>1.</B> Your name or pseudonym:<BR> <INPUT TYPE="TEXT" NAME="visitor_name" SIZE="60"></P> <P><B>2.</B> Your email address:<BR> <INPUT TYPE="TEXT" NAME="visitor_email_address" SIZE="60"></P> <P><B>3.</B> Your web site URL:<BR> <INPUT TYPE="text" NAME="site_url" SIZE="60" VALUE="http://"></P> <P><B>4.</B> Title of your web site:<BR> <INPUT TYPE="text" NAME="site_title" SIZE="60"></P> <P><B>5.</B> Please enter a brief description of your web site:<BR> <TEXTAREA COLS="40" ROWS="6" NAME="site_description"></TEXTAREA> </P> <P><B>6.</B> Please state how easy it was to set up your web site by email:<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="very easy">very easy<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="easy">easy<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="OK">OK<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="difficult">difficult<BR> <INPUT TYPE="RADIO" NAME="how_easy_was_it" VALUE="very difficult">very difficult</P> <P><B>7.</B> If you have any comments on setting up a web site by email, please enter them here:<BR> <TEXTAREA COLS="40" ROWS="6" NAME="comments"></TEXTAREA> </P> <P> <INPUT TYPE="SUBMIT" NAME="Submit1" VALUE="Submit"></P> </FORM>