.
2012-07-10 19:48:49 UTC
-------
Here is the HTML for the contact form:
-------------------------------------------------------
And here is mail.php, which is supposed to help make the form work. I think here is where the problem is:
$address = $_POST['address'];
$phone = $_POST['phone'];
$email = $_POST['email'];
$timeline = $_POST['timeline'];
$description = $_POST['description'];
$formcontent="From: $name \n Message: $message";
$recipient = "blanger@hawaii.edu";
$subject = "New Project Request from 2DadsDB.com";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Thank You!" . " -" . "Go Back";
?>