View Full Version : how to remove that annoying pop up with forms


worldsk816
07-20-2003, 02:30 AM
the one that says "this form is being submitted using email, blah blah etc"

how can i make it so that doesnt show up? i dont like it

pb&j
07-20-2003, 02:40 AM
in the ACTION part of your form you probably have a MAILTO as the value. that is the problem.

to get rid of the problem, you will need to use a form processing script. most come in the form of Perl/CGI script or PHP script. if your not able to create/host this type of script, you can use one that is hosted free.

to get one of your own...
http://www.hotscripts.com

to use a hosted one try...
http://www.bravenet.com

basically, once the form information is sent, it goes to this processing script and then sent to your email inbox.

worldsk816
07-20-2003, 02:41 AM
ok thanks