Forms

Hi all.

I have been playing around with flash email forms, and they are working great, the only problem I have is that I want to add a new field to the form called “Location” I have given the input field in flash the variable “loc”

here is the php script;

<?

$to = “myemailwillgohere@hotmail.com”;
$msg = "$name

";
$msg .= "$message

";
mail($to, $subject, $msg, "Email from form
Reply-To: $email
");
?>

where and how do I add this fild in the php script?