VIP3R
Oct 21st, 2000, 06:19 PM
I have an html form at http://www.internettrash.com/users/ezcash/Login2.html
This form e-mails the fields to my e-mail using DigiWeb.com 's cgi-bin/FormRobot . Since digiweb's new updates, their form robot doesn't work any more. I Was hoping that someone can give me any suggestions to how i can replace the use of this form. (My program enters text into the two fields on the html form and submits the form. Just thought you'd like to know!)
CyberSurfer
Oct 31st, 2000, 06:05 AM
You could check out Matt's Form Mail at:
http://www.worldwidemart.com/scripts/formmail.shtml
Thats assuming, of course, that your webspace provider lets you use CGI scripts.
If not, you can set the form to post to your email address instead of the script with a few hidden forms...
The example below is from a site I created for a friend..
ie:
<form method="post" enctype="text/plain" action="mailto:somemail@zetnet.co.uk?subject=wfa feedback">
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Name:
<input type="text" name="textfield">
E - mail:
<input type="text" name="textfield2">
</font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> Location:
<input type="text" name="textfield3">
Age:
<input type="text" name="textfield4">
</font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> What do you
think of the WFA Site?
<input type="text" name="textfield5" value="" size="30">
</font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> How could
this site be improved?
<textarea name="textfield6" cols="40"></textarea>
</font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Is this site
better than the first WFA Site? </font>
<input type="text" name="textfield7">
</p>
<p align="center">
<input type="submit" name="Submit" value="Submit Form">
<input type="reset" name="reset" value="Clear Form!">
</p>
</form>