as2 + php forms

i’ve tried a hundred different codes and tutorials trying to create a simple form in as2. i have one on my site in as1, it works fine. but when i create the same thing in as2 using the same php codes, i get no email. i don’t understand why these codes below don’t work. does anyone see my error?

php code:

 
<?php 
$sendTo = "[EMAIL="numinus67@gmail.com"]numinus67@gmail.com[/EMAIL]"; 
$subject = "B-Dub Forms Test"; 
$headers = "From: " . $_POST["name"]; 
$headers .= "<" . $_POST["email"] . ">
"; 
$headers .= "Reply-To: " . $_POST["email"] . "
"; 
$headers .= "Return-Path: " . $_POST["email"]; 
$message = $_POST["businessName"];
$message = $_POST["description"];
mail($sendTo, $subject, $message, $headers); 
?>
 

as2 code:

 
stop();
 
sendButton.onRelease = function(){
 trace ("Send");
 fields.loadVariables("email.php", this, "POST");
}
 
fields.onData = function() {
   _root.nextFrame();
}

In my flash file, i have a button named “sendButton” and a mc named “fields” on the stage. In the “fields” mc are four input textFields named “name”, “email”, “businessName”, and “description”. All this is on frame one, and the nextFrame is the same with the words Thank You on the screen.
On my php enabled server, i have the file “email.php” which contains the above php code.
When i fill out the form online, it goes to the next frame, indicating that the vars were loaded. But i dont get any emails at my numinus67@gmail.com address.
???