I can't believe I missed that lol
Thanks.
Just one more problem in the e-mail it says it's from 'nobody' is there anyway I can make it to show who's sending the e-mail... I've changed the coding a bit:
<?php
/* Subject and email variables */
$emailSubject = 'Contact Form';
$webMaster = 'becky@labyrinth-studios.com';
/* Gathering data variables */
$namefield = $_POST['name'];
$emailfield = $_POST['email'];
$selectfield = $_POST['select'];
$commentsfield = $_POST['comments'];
$body = <<<EOD
<br><hr><br>
Name: $namefield <br>
Email: $emailfield <br>
Select: $selectfield <br>
Comments: $commentsfield <br>
EOD;
$headers = "From: $emailfield\r\n";
$headers = "Content-type: text/html\r\n";
$success = mail($webMaster, $emailSubject, $body, $headers);
/* Result */
$theResults = <<<EOD
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
@import url(code.css);
.style7 {font-family: Arial, Helvetica, sans-serif}
</style>
<title>Labyrinth-Studios: Sent</title>
</head>
<body>
<pre id="line1"> </pre>
<div align="center" class="style7">
<h1 align="center" class="style1"><img src="sent.png" alt="sent" width="300" height="300" /></h1>
<p align="center" class="style1">Thank you for your email.</p>
<p align="center" class="style1">I will respond to yor message as soon as possible! </p>
<h1> </h1>
</div>
</body>
</html>
EOD;
echo "$theResults";
?>