Kaue
02-16-2005, 12:44 PM
Hello guys I´m having a little problem. I´m trying to send some information from a flash form to an email address, and I´m doing that using a php file,
In the flash file I call this function:
loadVariablesNum("enviaForm.php", 0, "POST");
The enviaForm.php file has this code;
<?
$to = "info@ipdesystems.com";
$subject = "Contact";
$mailheaders = "Message coming from the site \n";
$mailheaders .= "Answer to: $email\n\n";
$msg = "Name: $name\n";
$msg .= "E-Mail: $email\n";
$msg .= "Message: $message\n\n";
mail($to, $subject, $msg, $mailheaders) or die ("Error sending the message!");
?>
After the user presses “send”, all the variables are being sent ok, (except for one!), the $message variable that is a textfield that is inside a movie clip. So my question is; Is there a way I can retrieve this textfields value that is placed inside a movie clip which is in the same scene as the other variables? Thanks a lot.
In the flash file I call this function:
loadVariablesNum("enviaForm.php", 0, "POST");
The enviaForm.php file has this code;
<?
$to = "info@ipdesystems.com";
$subject = "Contact";
$mailheaders = "Message coming from the site \n";
$mailheaders .= "Answer to: $email\n\n";
$msg = "Name: $name\n";
$msg .= "E-Mail: $email\n";
$msg .= "Message: $message\n\n";
mail($to, $subject, $msg, $mailheaders) or die ("Error sending the message!");
?>
After the user presses “send”, all the variables are being sent ok, (except for one!), the $message variable that is a textfield that is inside a movie clip. So my question is; Is there a way I can retrieve this textfields value that is placed inside a movie clip which is in the same scene as the other variables? Thanks a lot.