Flash/PHP communication breakdown

Hello,
I have an email function on my website which uses Flash where the user enters their name, return address, and message into three dynamic text variables called “name”, “email” and “body”. These text boxes are grouped in a movie clip called “form”.

When the user pushes the send button, I have:

on (release) {form.loadVariables(“email.php”, “POST”);}

Here’s the PHP:
<?php

$sendTo = "myaddress@hotmail.com";

$subject = “My Flash site reply”;

 $headers = "From: " . $_POST["name"]; 

$headers .= “<” . $_POST[“email”] . ">
";

$headers .= "Reply-To: " . $_POST[“email”] . "
";

$headers .= "Return-Path: " . $_POST[“email”];

$message = $_POST[“body”];

 mail($sendTo, $subject, $message, $headers);

 [font=&quot]?&gt;

Finally, the Action associated with “form” is:

onClipEvent(data){_root.nextFrame();}

I tried sending an email to myself, and my confirmation page never came up… the message on the bottom of my browser (Firefox) said “waiting for www3.sympatico…” which is my server.

At least when I tried it on my hard drive, my confirmation page would come up (although obviously no email was sent). I’m pretty sure the path is correct, since email.php is in the parent directory with the swf.

Any suggestions?
[/font]