Very basic PHP Mail form _root

This is ultra-beginner stuff… and I am pretty ultraB. ;p

Anyway -

I completed the Kirupa PHP mail form and can’t get it to work -
I suspect it has something to do with the fact I have my ‘form’ movie & submit button within another movie, which is then placed on the main stage.

On my ‘submit’ button I have:
on (release) {
form.loadVariables(“email.php”, “POST”);
}

Should I have something else?
I have been trying loads of different variations but can’t make it happen…

my php is:

<?php
$sendTo = “my@email”;
$subject = “Contact Mail”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>