Flash Form with php

I have made a simple flash form with a php file with the following code; It has 11 fields with the var names as it is here within the third bracket. Its not working, Can anyone help?

<?php
$sendTo = “info@mysite.com”;
$subject = “Feedback from my site”;
$headers = “From: " . $_POST[“name”] . “<” . $_POST[“contact_hh”] . “<” . $_POST[“email_hh”] . “<” . $_POST[“place_hh”] . “<” . $_POST[“phone_hh”] . “<” . $_POST[“location”] . “<” . $_POST[“room_hh”] . “<” . $_POST[“tariff_hh”] . “<” . $_POST[“c_money_hh”] . “<” . $_POST[“s_charge_hh”] . “<” . $_POST[“remarks_hh”] .”>
";
// next include a replyto
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>