Click to See Complete Forum and Search --> : Feedback Forms


jshalcott
02-26-2006, 04:49 AM
Well I want to add a feedback form to my website but not sure how to do it with out using a cgi, php, etc. I know there is a way of doing this without those just plain html. But I can't remember how. It is simple name, email, comments, and how to improve form. :confused:

pcthug
02-26-2006, 04:59 AM
<form method="post" action="email@domain.com">

jshalcott
02-26-2006, 05:14 AM
cool, thanx man, short and simpl :)

the tree
02-26-2006, 06:01 AM
The "mailto" action relies on your visitors mail client wich is a pretty impractical approach. You would be better off using a process that runs on your server (Server Side Scripting). Which one you use (PHP, ASP, ASP.net, CGI-Perl, JSP, ColdFusion) depends on what your host supports.

jshalcott
02-26-2006, 03:51 PM
I know that it if you use ms outlook or yahoo mail that when you push the send button it just pops up your default mail. I too prefer using a server side scripting (CGI, PHP, ASP) but I was just thinking about if you just wanted to use HTML. If you don't like that it pops up your mail, or that you have to use a server side scripting you can use free ones that you build, can set it where to go after sending, and is just copy and paste codes.
www.freedback.com (http://www.freedback.com/)
www.response-o-matic.com (http://www.response-o-matic.com/)

ray326
02-26-2006, 10:13 PM
Also that action was missing the mailto: protocol.