How to edit a PHP Email Form

I’m using the PHP email tutorial in the PHP XML section. I’ve got it to function properly however; I would like to add more input fields.

When I added my new fields, the email I received only retrieved what was in the message field.

How do I configure my PHP script to retrieve the info from the new fields I’ve added?

Here’s the PHP script:
[font=Arial][size=2]<?php
$sendTo = “[u][color=#0000ff][email protected][/color][/u]”;
$subject = “Music Seminar Registration”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“telephone”];
mail($sendTo, $subject, $message, $headers);
?> [/size][/font]
[font=Arial][/font]
[font=Arial]Here’s he script from my fla. file:[/font]
[font=Arial][size=2]on (release) {
// send variables in form movieclip (the textfields)
// to email PHP page which will send the mail
form.loadVariables(“email.php”, “POST”);
}[/size][/font]

[font=Arial][/font]
[font=Arial][/font]
[font=Arial]These are the input fields that I’m adding:[/font]
[font=Arial]Company[/font]
[font=Arial]City[/font]
[font=Arial]State[/font]