PDA

View Full Version : help with forms!


Froggy
04-28-1999, 08:18 PM
can someone help me!?
I created a form and can't figure out how to proceed..
the form is on this page:
www.fvpro.com/survey.htm (http://www.fvpro.com/survey.htm)

I want to ask some questions and then be able to read the responses..Thanx
BTW FutureQuest is great!
Froggy

Deb
04-28-1999, 08:33 PM
Hi :)

If you change this line:
<form method=&quot;post&quot; action=&quot;&quot; name=&quot;&quot;>

To something like this:
<FORM ACTION=&quot;/cgi-sys/mailform&quot; METHOD=&quot;POST&quot;>
[nbsp]
<input type=hidden name=&quot;recipient&quot; value=&quot;YourEmail@YourDomain.xxx&quot;>
[nbsp]
<input type=hidden name=&quot;subject&quot; value=&quot;Response From Form Mail&quot;>
[nbsp]
<input type=hidden name=&quot;print_config&quot; value=&quot;email,subject&quot;>
[nbsp]
<input type=hidden name=&quot;title&quot; value=&quot;Thank You For Sending Us E-Mail!&quot;>
[nbsp]
<input type=hidden name=&quot;return_link_url&quot; value=&quot;http://www.YourDomain.xxx&quot;>
[nbsp]
<input type=hidden name=&quot;return_link_title&quot; value=&quot;Back to our Home Page&quot;>
[nbsp]
<INPUT TYPE=&quot;hidden&quot; NAME=&quot;required&quot; VALUE=&quot;realname,email&quot;>

It should work for you.... please view http://www.aota.net/Tutorials/Mail.shtml for more details on how all of this works and more ways you can configure it for your needs :)

Deb