Thread: Feedback Form
View Single Post
Old May 12, 2003 | 11:53 AM
  #2  
flipped cracka's Avatar
flipped cracka
BOOM goes the dynamite!
 
Joined: Mar 2003
Posts: 27,571
Likes: 1
From: in a van down by the rive
Default

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>
Reply