how do i add a comment box to my website
you know, so i can get people to send me feedback via e-mail
Printable View
how do i add a comment box to my website
you know, so i can get people to send me feedback via e-mail
You need a form and some form elements eg text boxes,
Next you need a server side script to send you the contents of the form when it is submitted.Code:<form name="form1" method="post" action="">
<textarea name="textfield"></textarea>
<input type="submit" name="Submit" value="Submit">
</form>
Unless you are familiar with server side scripting you will need to use one of the many free cgi sites out there. Do a search for 'free cgi scripts', they usually have instructions how to set this kind of thing up!
If you notice the <form> tag it has an attribute action="".
Inside the quotes you need to put the path to the cgi script!
thanks man :)
you can also put mailto:[email protected] in the action. that is kind of annoying though for most useres. but, it is an option.