Flash oldie but PHP newbie

Hi Guys
I am wondering if anyone can help me out here. I followed a tutorial here on the KIrup site from putting together a small form in Flash and sending it through PHP, and if you felt an Earthquake, that was me jumping up and down coz it worked…well I think it did, when I checked my email this is what was found in my inbox:
From : <TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE=“Verdana” SIZE=“10” COLOR="#000000" LETTERSPACING=“0” KERNING=“0”>me</FONT></P></TEXTFORMAT><<TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE=“Verdana” SIZE=“10” COLOR="#000000" LETTERSPACING=“0” KERNING=“0”>chris.rendall@hotmail.co.uk</FONT></P></TEXTFORMAT>>

and for the message: <TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE=“Verdana” SIZE=“10” COLOR="#000000" LETTERSPACING=“0” KERNING=“0”>well?</FONT></P></TEXTFORMAT>

the subject box was ok, can anyone tell me where I have gone wrong, please, its dam frustrating!
I also put this message in the PHP part of the forum, but looking at it, it looks more like a flash problem, I am probably not doing something right.

this is the PHP code I am using:
<?php
$sendTo = "webmaster@belgiancafe.co.uk";
$subject = “My Flash site reply”;
$headers .= ‘Content-type: text/html; charset=iso-8859-1’ . "
";
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>

Actionscript:
for the send button:
on (release) {
mailform.loadVariables(“email.php”,“POST”);
}

for the movieclip:
onClipEvent(data){
_root.nextFrame();
}

Any help would be appreciated, its so frustrating!