Flash-Based Email Form Using PHP

I followed the Flash-Based Email Form Using PHP tutorial. My problem is I need to add company, name, phone, e-mail and message. I have added the text field in flash, but cann’t modify the php (and make it work)

$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];

Tahnks for any help!