| | |||||
| ||||||||
| Web Development Wanted Requests for websites, templates, custom programming, logos or graphics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Jan 2006
Posts: 108
![]() | HTML Email Forms I would like to set up an email form on my site (http://www.tutorial-wizard.com) for people to easily and quickly submit their tutorials. This form will be for a submit button to send several fields to my email quickly. There is no deadline or set price, so I will be taking any quotes on here. Anyone who has any offers, please post here and I will get back to you on it.
__________________ open... |
| |
| | #2 (permalink) |
| NamePros Regular Join Date: Dec 2005
Posts: 210
![]() | This is just a basic contact form...edit its fields to fit yours The actual form: Code: <form action="mail.php" method="post"> Your Name: <input type="text" name="name"><br> E-mail: <input type="text" name = "email"><br><br> Your Comments:<br> <textarea name="comment"></textarea><br><br> <input type="submit" value="Tell Us!"> save this as mail.php: -=-=-=-= Code: <?
$name=$_POST['name'];
$email=$_POST['email'];
$comment=$_POST['comment'];
$to="your@email.com";
$message=" $name sent you a comment on your site.\n They said $story\n\n Their e-mail address was: $email";
if(mail($to,"Comments From Your Site",$message,"From: $email\n")) {
echo "Thanks for your comments! That’s the only way we can improve our site!";
} else {
echo "There was a problem sending your story. Please check that you filled in the form correctly.";
}
?> |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Email Marketing Domains | Isis | Domains For Sale - Make Offer | 0 | 12-16-2005 04:21 PM |
| Registrar wont release my domain. | domainabilities | Domain Name Discussion | 17 | 04-07-2005 12:00 AM |
| HTML: Forms | mak | CODE | 5 | 01-08-2005 07:29 PM |
| Create HTML Forms in an instant with htmlforms.com | Cyphix | For Sale / Advertising Board | 2 | 11-09-2004 12:49 AM |
| HTML code in forms | JustJo | Web Design Discussion | 4 | 05-06-2004 07:31 AM |