I have a code when any error is not what is the problem, please
this is my devop code
<?php
/* Subject and Email variabales */
$emailSubject = 'crazy PHP Scripting';
$webmaster = 'email@email.com';
/* Gathering data variables */
$emailFieled = $_POST['email'];
$nameFieled = $_POST['name'];
$phoneFieled = $_POST['phone'];
$areyouFieled = $_POST['areyou'];
$serviceFieled = $_POST['service'];
$countryFieled = $_POST['country'];
$commentsFieled = $_POST['comments'];
$body = <<<EOD
<br><hr><br>
Email: $email <br>
Name: $name <br>
Phone: $phone <br>
Areyou: $areyou <br>
Service: $service <br>
Country: $country <br>
Comments: $comments <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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
<style type="text/css">
<!--
.Style1 {
color: #FF0000;
font-weight: bold;
}
-->
</style>
</head>
<body>
<div align="center" class="Style1">Thanks for the message we will respond to you as soon as !</div>
</body>
</html>
EOD;
echo "$theResults";
?>