loadVariables with PHP not working!

Ok… I’m rather confused.

I have a feedback form in flash. With one textfield with the var “name” and another textfield with the var “email”, one with the var “body”, and finally one with the var “returnmessage”.

These all start in a frame named “first”.

On my submit button I have :

PHP:--------------------------------------------------------------------------------
on (release) {
loadVariables(“sendform.php”, this, “POST”);
gotoAndPlay(“second”);
returnmessage = “Sending message in progress …”;
}


In the frame labeled “second”, I have :

PHP:--------------------------------------------------------------------------------
if(is_sent == 1){
gotoAndStop(“first”);
}


and on the third frame named “third” I have:

PHP:--------------------------------------------------------------------------------
gotoAndPlay (“second”);


In my sendform.php file, I have :

PHP:--------------------------------------------------------------------------------

<?
$toadress = "myemail@myemail.com";
$subject = “Contact Form”;
$mailcontent = "From: $name.

Email: $email

$body";

$headers .= "From: $name<$email>
";
mail($toadress, $subject, $mailcontent, $headers);
echo “returnmessage=The message is successfully sent.&is_sent=1”;
?>


Ok… This all works PERFECT together, if i just call up the individual .swf that this is loaded into. Once I call this .swf into a placeholder MC in my main .swf, it doesn’t work anymore. I have tried and tried and … yes… tried some more to get it to work, and I just can’t figure it out. I am TERRIBLY disturbed by this, and want to know how to fix it.

Am I correct in assuming that it has something to do with the
PHP:--------------------------------------------------------------------------------
loadVariables(“sendform.php”, this, “POST”);


part of it?

I have no clue…

Pleeeeeeeeeeeease help!!!