Hi all,
I am having trouble passing a PHP variable into an MC in my flash movie. When i have my contact form on the root all variables are passed perfectly but when I load the contact form into an MC the variables from the PHP file are not passed into flash. I tried adding _root.mcname in front of a couple things in the PHP file but this did not work. The section of code I am having trouble w/is below. Thanks.

PHP Code:
//Confirmation is sent back to the Flash form that the process is complete
$sendresult "Thanks $yourname for refering a friend! You and your friend will receive a confirmation email shortly.";
$send_answer "answer=";
$send_answer .= rawurlencode($sendresult);
echo 
"$send_answer";

endif;

?>