PHP-FLAsh form

Hi
I have a problem with my form in flash. It does send an e-mail but it is empty. It looks like there is a problem with flash passing the variables to the php file. here is my php file :
<?php
$sendTo = "palentze@yahoo.com";
$subject = “nightmusique MSG”;
$email= $HTTP_POST_VARS[“email”];
$name = $HTTP_POST_VARS[“name”];
$message = $HTTP_POST_VARS[“message”];
mail($sendTo, $subject, $message, "From: $name
Reply-To: $email
");
?>
and I have used the tutorial from kirupa.com
I have passed the corresponding variable names to the input fields
I need help. please :)):h:

try using single quotes:

<?php
$sendTo = "palentze@yahoo.com";
$subject = "nightmusique MSG";
$email= $HTTP_POST_VARS['email'];
$name = $HTTP_POST_VARS['name'];
$message = $HTTP_POST_VARS['message'];
mail($sendTo, $subject, $message, "From: $name
Reply-To: $email
");
?>

it doesn’t work still

What exactly does “doesn’t work” entail? Have you tried tracing?