i need help with php
CAN U HELP ME
<?PHP
/*SUBJECT AND EMAIL VARIABLES - ESTES ES UN COMENTARIO*/
$emailsubject ='CONTACT FORM From hulk website';
$webmaster="
edgardo@vapprinting.com';
/*gathering Data Variables*/
$nameField = $_POST['name'];
$lastnameField = $_POST['lastname'];
$ageField = $_POST['age'];
$emailField = $_POST['email'];
$commentsField = $_POST['comments'];
$body = <<<EOD
<BR><HR><BR>
Name: $name
Last Name: $lastname
Age: $age
Email: $email
Comments: $comments
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>Gracias</title>
</head>
<body bgcolor="#000000" text="ffffff">
<h1>Thank you !!!</h1>
De Click <a href="index.html">AQui<a/> Para Regresar A La PAGINA PRINCINPAL
</body>
</html>
EOD"
echo "$theResults";
?>