Flash email with php - help needed!

please help me, urgent, can anyone give me a decent php-flash email guide?
i need to finish it up before the meeting first thing in the morning.

the one i was using is in http://www.kirupa.com/developer/actionscript/flash_php_email.htm
but it doesn’t seem to work.

this is what i did, it’s a long list …

on php file:
<?php
$sendTo = “asdfg@hotmail.com”;
$subject = “Banner reply”;
$headers = “From: " . $_POST[“formName1”] .” <" . $_POST[“formMail1”] .">
";
$headers .= "Reply-To: " . $_POST[“formMail1”] . "
";
$headers .= "Return-path: " . $_POST[“formMail1”];
$message = "Height of Banner: " $_POST[“heightphp1”];
$message = "Width of Banner: " $_POST[“widthphp1”];
$message = "Name of Client: " $_POST[“formName1”];
mail($sendTo, $subject, $message, $headers);
?>

on the flash AS:
form.onEnterFrame = function() {
form.heightphp2.text = calculator.heightInput.text;
form.widthphp2.text = calculator.widthInput.text;
form.formName2.text = contactform.nameInput.text;
};
order.onPress = function() {
if (delivery == true) {
if (form.heightphp2.text != “”) {
if (form.widthphp2.text != “”) {
if (form.formName2.text != “”) {
form.loadVariables(“email.php","POST”);
contactform.orderInfo.text = “We have received your order and will attend to you shortly. Please wait for 1 minute to ensure the email is sent.”;
}
}
}
} else {
contactform.orderInfo.text = “Please recheck and ensure that you have filled in all the required fields in Step 2 and Step 3”;
}
};

i deleted a couple of AS which goes the same to reduce the length just for your sight, but i’m sure if there a problem over there you guys could see it anyway.

anyhow, heightphp1 stands for the var
heightphp2 is the instace name of the input field

please and thank you, correction is deeply needed.