[FMX] Hey i need help.. having trouble with a AS Form

Hello guys over there… :beam:

hey i’m having so much trouble with a “contact us page”… i’m having trouble to get this thing to work… i’ve posted a file with the things i’ve been working on… please help me, I don’t know very much about PHP (i don’t know anything!) and well, here i’m going to post the code of every button an PHP file Script.

Here is it

PHP File, called Form.php :

<?

$to = “new_soul_beast@hotmail.com”;
$msg = "$name

";
$msg .= "$message

";

mail($to, $subject, $msg, "From: My web site
Reply-To: $email
");

?>

And here is the Submit button AS in Flash MX:

on (release)
{
if (name == “” || subject == “” || message == “” || email == “”)
{
stop();
}
else
{
getURL(“form.php”, “_level0”, “POST”);
} // end if
}

Something is wrong, it doesn’t send any mail, and also changes the actual movie to nothing…

HELP MEEEE :’(

read this thread:

http://www.kirupaforum.com/forums/showthread.php?s=&threadid=17604