can anyone spot any error to why my form is not working. Below is the php page. I have also attached my flash send button, the form fields are not in here because the file got heavy to post but on my site the form fields have the variable names of t1,t2,t3
<?PHP
$to = "renaeceline@hotmail.com";
$headers = "From: " . $_POST[“name”];
$msg .= "Mail from your Web site!
";
$msg .= "Name: " . $HTTP_POST_VARS[“t1”] . "
";
$msg .= "Email: " . $HTTP_POST_VARS[“t2”] . "
";
$msg .= "Comments: " . $HTTP_POST_VARS[“t3”] . "
";
mail($to, $HTTP_POST_VARS[“name”], $msg, "You received a message GeorgeBeckman.com.
Reply-To: ". $HTTP_POST_VARS[“email”] . "
");
Print “status=Information sent.”;
?>