Freddycodes, i looked at the threads you suggested made the changes but i'm still not receiving any of the emails. I'm sure that the server supports PHP cause i've checked. The php file now looks like this:
<?php
$email = "
[email protected]";
$subject = "Mail from Spaceport Site";
$message = $_POST['message'];
$from = $_POST['from'];
$headers = "From: PHPMailer\nReply-To: $from\nX-Mailer: PHP/\nMIME-Version: 1.0\nContent-type: text/html; charset=iso-8859-1";
mail($email, $subject, $message, $headers);
?>
The action on the button in the fla file is as follows:
on (release) {
loadVariablesNum("mail.php", 0, "POST");
}
Both the swf and php files are in the same directory on the server and i'm still not getting any of the email. It won't allow me to attach the swf for you to look at but i've got two input text fields. One for the user to enter their email with the variable name "from" and one for the user to enter comments with the variable name "message". Why isn't it working????

Thanks.