Unusual Issue: Flash CS3 / AS2 / PHP Contact Form

Alright so I’ve reviewed more tutorials and built so many of these contact forms in the past its amazing. now i try to use the exact form in Flash CS3 as I did in prev versions and get a huge headache instead of my functioning form. I also think this issue may be due to the depth of the form.

Main Timeline
>movieclip container for “Contacts page”
>>movieclip containing Form

I’m using

on (release) {
loadVariables(“sendmail.php”, this, “POST”);
}

with all of the variables set on the input text boxes of course.

and the standard php form:

<?php
$name = $_POST[“txtName1”];
$email = $_POST[“inputEmail”];
$message = $_POST[“inputDetails”];
$sendTo = "mail@mail.com";
$subject = “Form”;
$msg = “Senders Name: " .”$name

";
$msg .= “Email: " .”$email

";
$msg .= “Message: " .”$message

";
$msg .= "This message was sent to you from My Site Contact Form.

";
$msg .= “Do not reply to this email directly.”;

mail($sendTo, $subject, $msg, "From: " . "$email

");
?>

I can get this to send me an email (with none of the variable data, only the static text like the subject “Form” shows up in the email)

That is pretty much where my problem lies, if anyone can tell me how to get these variables to pass to PHP properly it will be gladly received!