My flash contact php form doesn't work...?

Antonia

New member
I've got all the input text boxes. The action script on the submit utton is;

on (release) {
if (name eq "" or subject eq "" or message eq "" or email eq "") {
stop();
} else {
loadVariablesNum("form.php", 0, "POST");
gotoAndStop(2);
}
}

and oh the php the code is;

$to = "[email protected]";
$msg = "$name\n\n";
$msg .= "$message\n\n";
mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
?>

I'm on AS2 but it doesn't send it to my email address, any suggestions?
 
Back
Top