i cannot get the out put to show correct or get it to put in what i fill in in my from.
here is part of my code not working right
Code: Select all
/* subject and email*/
$emailSubject = ' crazy email scripting !';
$webMaster = '';
/* getting data */
$emailField = $_POST['email'];
$nameField = $_POST['name'];
$phoneField = $_POST['phone'];
$budgetField = $_POST['budget'];
$body = <<<EOD
<br><hr><br>
Email: $email <br>
Name: $name <br>
Phone: $phone <br>
Budget: $budget <br>
EOD;here is the output im getting
Code: Select all
<br><hr><br>
Email: <br>
Name: <br>
Phone: <br>
Budget: <br>