Parse error in php code
Posted: Thu Jan 20, 2011 12:13 am
I am novice. I am trying to create one email form. But i am getting "Parse error: parse error in F:\test\wamp\www\sendmail.php on line 43"
last line is 43.......i mean "?>"
Code: Select all
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "shariefbe@gmail.com";
$email_subject = "Inquiry from you']";
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// validation expected data exists
if(!isset($_POST['name']) ||
!isset($_POST['company']) ||
!isset($_POST['email']) ||
!isset($_POST['contact']) ||
!isset($_POST['address']) ||
!isset($_POST['description'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$name = $_POST['name']; // required
$company = $_POST['copany']; // required
$email_from = $_POST['email']; // required
$contact = $_POST['contact']; // not required
$comments = $_POST['description']; // required
$error_message = "";
$email_exp = "^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$";
// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>