PDA

View Full Version : flash forms an dphp problem


ferosi
10-22-2003, 01:53 AM
Can anybody tell me what is wrong

receive the e-mail but without th e values of subject and message. Can anybody tell me what is wrong. My web hoster provider has php 4.2.2


my fla script is:

on (release) {
if (subject eq "" or message eq "" or from eq "") {
stop();
} else {
lineAdapt();
loadVariablesNum("mail.php", 0, "POST");
gotoAndStop(2);
}
}


my php scrip is:
<?php

mail("fernando.solano@eds.com", $subject, $message, "From: PHPMailer\nReply-To: $from\nX-Mailer: PHP/" . phpversion());

?>

I receive the e-mail but without th e values of subject and message. Can anybody tell me what is wrong. My web hoster provider has php 4.2.2