ciao,
ho fatto un mail form in flash e ho un problema che non riesco a risolvere. quando la mail arriva al destinatario del form non mi compare una delle variabili: sender_message.

Qualcuno mi può aiutare?

questo qua sotto è il listato del file .php. potrebbe essere questo file o il .fla che da problemi?



ciao e grazie


<?
if(!empty($HTTP_POST_VARS['sender_mail']
) || !empty($HTTP_POST_VARS['sender_message']
) || !empty($HTTP_POST_VARS['sender_subject']
) || !empty($HTTP_POST_VARS['sender_cell']) || !empty($HTTP_POST_VARS['sender_name']))
{
$to = "info@pippo.com";
$subject = stripslashes($HTTP_POST_VARS['sender_sub
ject']);
$body = stripslashes($HTTP_POST_VARS['sender_mes
sage']);
$body = stripslashes($HTTP_POST_VARS['sender_cel
l']);
$body .= "\n\n---------------------------\n";
$body .= "Mail inviata da: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$header = "From: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$header .= "Reply-To: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$header .= "X-Mailer: PHP/" . phpversion() . "\n";
$header .= "X-Priority: 1";
if(@mail($to, $subject, $body, $header))
{
echo "output=sent";
} else {
echo "output=error";
}
} else {
echo "output=error";
}
?>