WAHM Forums

The WAHM community forum was created to be a place for work at home moms to share their ideas and stories. In the forum you can find information about work at home jobs, starting home businesses, avoiding scams, and surviving the WAHM lifestyle. In support of the WAHM community, WAHM.com also features instructional articles, easy recipes, as well as job and business listings tailored specifically to work at home opportunities.




View Full Version : Forms


scadesigns
02-14-2006, 06:49 AM
I'm curious what do you guys use to make forms? Any help would be appreciated.


nolacoop
02-14-2006, 06:54 AM
Do you mean web forms, or printables? :)

scadesigns
02-14-2006, 07:27 AM
I meant web forms where the customer can fill out the form online and have it sent directly to my email. Is there an easy way to do that. I know how to create them. Its the part of actually getting them to work I don't understand.


nolacoop
02-14-2006, 09:31 AM
All online forms need to start with the "form" tag and then supply a "method" (post), and at least an "action" (mailto:) with your email address listed after the :


So your opening line of code for the formmight be:


< form action=mailto:your@email.address method="POST"
enctype="text/plain" >


(this "enctype" tells it to send a plain text email)


You will also need to close the form < /form >


This won't work with all browsers, though. It might be better to find a hosted form service, such as http://www.mycontactform.com/ (http://www.mycontactform.com/)
or, use a script: http://cgi.resourceindex.com/Remotely_Hosted/Form_Processing (http://cgi.resourceindex.com/Remotely_Hosted/Form_Processing/) /


Good Luck! smileys/smiley2.gif

scadesigns
02-14-2006, 09:38 AM
Thank you very much for your help!smileys/smiley1.gif

motivated_mom
02-17-2006, 09:05 AM
its pretty easy. I usually hand code the forms. Do let me know if you need any help

scadesigns
02-17-2006, 10:51 AM
I've been playing around with the trial of formail.com and I will be purchasing it! Thanks.

Edited by: scadesigns