|
Another PHP parse error
ok the first error is fixed but now i have this new error.
Parse error: parse error in C:\wamp\www\contactform.php on line 40
code:
<?php
/* Email Variables */
$emailSubject = 'contactformprocess!';
$webMaster = 'hiddenmirageads@gmail.com';
/* Data Variables */
$nickname = $_POST['username'];
$email = $_POST['Email'];
$describe = $_POST['Describe'];
$footage = $_POST['footage'];
$pricebudget = $_POST['checkbox'];
$time = $_POST['Time'];
$paypal = $_POST['Paypal'];
$body = <<<EOD
<br><hr><br>
Username: $nickname <br>
Email: $email <br>
Description: $describe <br>
Footage o,r Digital: $footage <br>
Budget: $budget <br>
Time Slot: $time <br>
Paypal: $paypal <br>
EOD;
$headers = "From: $email\r\n";
$headers .= "Content-type: text/html\r\n";
$success = mail($webMaster, $emailSubject, $body,
$headers); ini_set(25,25)
/* Results rendered as HTML */
$theResults = <<<EOD
<html>
<head>
<title>sent message</title>
<meta http-equiv="refresh" content="3;URL=http://YOUR WEBSITE ADDRESS/contact.html">
<style type="text/css">
<!--
body {
background-color: #444;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 20px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #fec001;
text-decoration: none;
padding-top: 200px;
margin-left: 150px;
width: 800px;
}
-->
</style>
</head>
<div align="center">Your email will be answered soon as possible!
You will return to Classic Bikes in a few seconds !</div>
</div>
</body>
</html>
EOD;
echo "$theResults";
?>
line 40 is:
$theResults = <<<EOD
HELP!!
|