Adding fields to email form?

Hi, I wanted to add some fields to the email form (tut here: http://www.kirupa.com/developer/actionscript/flash_php_email.htm). I’m not 100% sure of how to do it, so I just did what seemed like the common sense thing to do. And it isn’t sending, or the receiver isn’t getting it.

Can someone please help? I’ve attached my source file and here’s the PHP code…

<?php
/***************************************************\
 * PHP 4.1.0+ version of email script. For more
 * information on the mail() function for PHP, see
 * http://www.php.net/manual/en/function.mail.php
\***************************************************/


// First, set up some variables to serve you in
// getting an email.  This includes the email this is
// sent to (yours) and what the subject of this email
// should be.  It's a good idea to choose your own
// subject instead of allowing the user to.  This will
// help prevent spam filters from snatching this email
// out from under your nose when something unusual is put.

$sendTo = "[email protected]";
$subject = "Contact from website";

// variables are sent to this PHP page through
// the POST method.  $_POST is a global associative array
// of variables passed through this method.  From that, we
// can get the values sent to this page from Flash and
// assign them to appropriate variables which can be used
// in the PHP mail() function.


// header information not including sendTo and Subject
// these all go in one variable.  First, include From:
$headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" . $_POST["email"] .">
";
// next include a replyto
$headers .= "Reply-To: " . $_POST["email"] . "
";
// often email servers won't allow emails to be sent to
// domains other than their own.  The return path here will
// often lift that restriction so, for instance, you could send
// email to a hotmail account. (hosting provider settings may vary)
// technically bounced email is supposed to go to the return-path email
$headers .= "Return-path: " . $_POST["email"];

// now we can add the content of the message to a body variable
$phone = $_POST["phone"];
$lhdrhd = $_POST["lhdrhd"];
$make = $_POST["make"];
$model = $_POST["model"];
$automanual = $_POST["automanual"];
$exteriorcolor = $_POST["exteriorcolor"];
$interiorcolor = $_POST["interiorcolor"];
$specification = $_POST["specification"];
$year = $_POST["year"];
$maxbudget = $_POST["maxbudget"];
$delivery = $_POST["delivery"];
$message = $_POST["message"];

// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo, $subject, $message, $headers, $phone, $lhdrhd, $make, $model, $automanual, $exteriorcolor, $interiorcolor, $specification, $year, $maxbudget, $delivery,);

?>