Flash/PHP Form Help

I am trying to make my form work that I built in flash. I used PHP code to process the form. It works great when the code says

<?php
$sendTo = "steresa2001@yahoo.com";
$subject = “My Flash site reply”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];