Greetings,
I want to make a survey for my webpage only using html (or java) that will take information that people put in using drop boxes and text boxes and e-mail it to me, however i am not sure where to start...
any ideas??
thanks
Printable View
Greetings,
I want to make a survey for my webpage only using html (or java) that will take information that people put in using drop boxes and text boxes and e-mail it to me, however i am not sure where to start...
any ideas??
thanks
AFAIK you need to have a server side language installed, such as php or python or perl or asp or whatever. .jsp pages may be able to do it but I have no experience with those.
You would then have to write the form action in the installed language. PHP is pretty easy, IMO.
CGI Mailer scripts are generally present on webhost servers, even if that webhost does not offer PHP, JSP, ASP, etc... Check with your host to see if they have such CGIs available.Quote:
Originally posted here by djscribble
I want to make a survey for my webpage only using html (or java) that will take information that people put in using drop boxes and text boxes and e-mail it to me, however i am not sure where to start...
Although the best idea would be to use cgi like said before there is another way. You can send information via email. It will probably show up as an attachment-depending on your email service.
Here is are some links to help you with html forms::
http://www.w3.org/TR/REC-html40/interact/forms.html
http://www.w3schools.com/html/html_forms.asp
Below is what you need to send it to your email-
When they click send/submit/ whatever their email client will pop up and they will have to sign in to send the data to you. Not the best option if they use something different and IE isn't set to that.
Hope this helps- good luck
kurt
I have the form part done in html with no problems, i used a combination between drop down boxes and text boxes... Some of you mentioned that there is a cgi method available for e-mailing... i did find some examples, however, they are done by something called REBOL...
what is rebol and is it something that i should think about using... also, is there anything better out there??
here is the site that i found:
http://www.reboltech.com/library/script-cgi.html
The specific name for the scripts you want is "form mailer"s. http://www.scriptarchive.com/formmail.html < formmail.pl is a very popular one. Check your webhost's documentation, they may have this sort of thing already.