Sorry for this, but another mail form problem

I’ve read about 3 million threads on this subject and am about to resort to suicide. ive researched, confirmed my server supports php, and even stole code from a few of the threads and still can’t get this form to mail to me. If someone could take a look at my code and tell if its right id be very appreciative.

ActionScipt


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


Php


<?PHP

$to_=_"me@mydomain.com";

$msg_=_"$name

";

$msg_.=_"$phone

";_

$msg_.=_"$email

";_

$msg_.=_"$comment

";_

mail($to,$subject,$msg,_"From:My_web_site
Reply-To:
$email
");

?>_


i then upload both files to my server(who alegedly supports php [verizon])
and nothing comes to me. I think i may be missing something but im not sure.

please help