Flash php mailform problems

Hi there,
is there anyone who could give me a hand with this mailform: I tried real hard but I can’t get it working. I’ve compared with lots of tutorials and everything seems to be in order:

here is my php script I use:


<?php
$sendTo = "pietervanstee@skynet.be";
$subject = "subject";

$headers = "From: " . $_GET["name"];
$headers .= "<" . $_GET["email"] .">
";
$headers .= "Reply-To: " . $_GET["email"];
$site = $_GET["site"];
$message = $_GET["message"];
mail($sendTo, $subject, $message, $headers);
?>

And I call the php file with this code:



on (release) {
         dataBottom.loadVariables("email.php", "POST");
}



dataBottom is the name of a MovieClip where all the text fields are.

Let me know if you need the .fla :geek: