CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   PHP (http://www.codingforums.com/forumdisplay.php?f=6)
-   -   Need help urgently! Php script not working (http://www.codingforums.com/showthread.php?t=287398)

aaronSSE 02-10-2013 05:57 AM

Need help urgently! Php script not working
 
Ive just designed my first contact form for my website so people can sign up to sell tickets to the event but when they click submit it goes to a blank page that says theResults instead of staying on the main page and having a drop down saying the Success message. I then receive a email but the email has no information in it.

Here is my PHP code
PHP Code:

<?php

/* Subject and Email Variables */

$emailSubject 'Insomnia All Ages Promoters';
$webMaster 'aaron@superbsoundentertainment.com';

/* Gathering Data Variables */

$nameField $_POST['name'];    
$emailField $_POST['email'];
$mobileField $_POST['mobile'];
$schoolField $_POST['school'];
$dobField $_POST['dob'];
$addressField $_POST['address'];
$whyField $_POST['why'];

$body = <<<EOD
<br><hr><br>
Name: $name <br>
Email: $email <br>
Mobile: $mobile <br>
School: $school <br>
DOB: $dob <br>
Address: $address <br>
Why: $why <br>
EOD;

$headers "From: $email\r\n";
$headers .= "Content-type: text/html\r\n";
$success mail($webMaster$emailSubject$body$headers);

/* Results rendered as HTML */

$theResults = <<<EOD
<html>
<head>
<title>JakesWorks - travel made easy-Homepage</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #f1f1f1;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #666666;
text-decoration: none;
}
-->
</style>
</head>

<div>
<div align="left">Thank you for signing up! We will be in touch very soon! Kind regards the team at Superb Sound Entertainment</div>
</div>
</body>
</html>
EOD;
echo 
"theResults";    


?>

can someone either change the code for me or tell me where I need to fix it thanks

here is a link to the website http://insomniau18s.com

Kind Regards
Aaron

sunfighter 02-10-2013 05:15 PM

Not going back to that site again and don't think I'd stay long enough to fill out your form, but :
$nameField = $_POST['name'];

Maybe $name = $_POST['name']; to make things work.

djm0219 02-10-2013 05:24 PM

echo "theResults"; should be echo $theResults;


All times are GMT +1. The time now is 04:13 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.