Results 1 to 2 of 2
-
May 2nd, 2012, 08:47 AM #11Registered User
postsGetting blank forms with required fields in place.
Hi, I am not a web developer I am just learning how to do this stuff. I created a form that has required fields but I am getting blank forms somehow. How do I prevent this from happening. Here is the code for the php file.
Thanks for your help with this.
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$phone = $_POST['phone'];
$message = $_POST['message'];
$level = $_POST['level'];
$webMaster = 'domain@domain.com';
$body = <<<EOD
Name: $name <br>
Email: $email<br>
Phone: $phone<br>
Level: $level<br>
$message<br><br>
EOD;
$headers = "From: $email\r\n";
$headers .= "Content-type: text/html\r\n";
$sucess = mail($webMaster, $subject, $body, $headers);
header("Location: thanks.html");
exit();
?>
-
May 28th, 2012, 06:38 AM #2233Registered User
posts

Reply With Quote

Bookmarks