Feedback Form
Anyone know how to code a feedback form?
With like name, email address, and any input you want in it.
I'm not looking for a website that already has a premade form and a pop up ad after you filled out the form. I want a clean code form that has NO ad whatsoever!
Please help! This is very important!!!!
With like name, email address, and any input you want in it.
I'm not looking for a website that already has a premade form and a pop up ad after you filled out the form. I want a clean code form that has NO ad whatsoever!
Please help! This is very important!!!!
it's pretty easy. you just make a form using html and have a script send the email....i usually use php to send the email, but you could use perl (.cgi) as well. the form would be like
Code:
<form action="http://thescript" method="post"> <input type="text" name="yourname"> <input type="text" name="email"> <textarea name="comment"></textarea> <input type="submit" value="send it"> </form>


