Help on php/flash email form

[font=verdana, arial, helvetica][size=2]I’m trying to make a email submit form. I tried this and nothing works. Please help! Thanks!
This is what I have in my submit button in flash;

on (release) {
form.loadVariables(“email.php”, “POST”);
gotoAndPlay(2);
}

This is what I have in my php file;

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1”>
</head>

<body>
<?
mail("rudy_perez@sbcglobal.net", “Email Entry Added”, wordwrap("
His e-mail address was $email, 72, "
“, 1”), “Return-Path: <rudy_perez@sbcglobal.net>
From: Rudy Perez”);

mail("$email", “Thanks for filling the Emial Reminder”, wordwrap(“Thanks, $email], for filling the email reminder. Dont forget to watch.”, 72, "
", 1), “Return-Path:<rudy_perez@sbcglobal.net>
From: Rudy Perez”);

?>
</body>
</html>[/size][/font]