
Originally Posted by
24HourDomainer
i just spend the last 2 hours using free tools and none of them work... anyone have a php or a contact form that I can add to my website?
Simple tutorial, if you don't know PHP then just copy and paste the two files and it will work. 
http://www.buildwebsite4u.com/advanced/php.shtml
If you want it to send to a specific email address with a subject line then you can remove the email and subject text box and replace
PHP Code:
$email = $HTTP_POST_VARS['email'];
$subject = $HTTP_POST_VARS['subject'];
With
PHP Code:
$email = "you @ domain . com";
$subject = "Your Subject";
For ease of editing at a later time.
Bookmarks