Email form not working

okay i followed the tutorial — execpt where is says
onClipEvent (data) {
_root.nextFrame ();
}

it takes my whole fla to the next frame so i am not sure what to put where. i have tried changing it to just nextFrame() and that doesnt work either.

i need to get this form up and running by tomorrow — its for our business and i am stuck

i used the tutorial list here but it is not sending any of the information.

can someone please help me!!! at this point i will even offer to pay someone to do a simple php form for me.

here is what the php form looks like

<?php
$sendTo = "estimate@magnoliafoam.com";
$subject = "Estimate Request";
$headers = "From: " . $_POST["name"] ." ". $_POST["phone"] . "<" . $_POST["email"] .">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-path: " . $_POST["email"];

$message = $_POST["name"];


$message .=$_POST["phone"];


$message .=$_POST["email"];


$message .=$_POST["message"];



mail($sendTo, $subject, $message, $headers);?>

here is the coding in the fla

on the movie clip itself

onClipEvent(data) {
gotoAndStop(2);
}

the submit button is as follows

on (release) {
form.loadVaribles ("estimate.php" , "POST");
}

could someone please help me – maybe i am missing something in the coding, but i dont know. it just simply doesnot work.

here is the website -----> http://magnoliafoam.com

thank you in advance