Problem with contact form

Hello,
I have been following the tutorial www.kirupa.com/developer/actionscript/flash_php_email.htm

and I have created everything but I have a catch.

the way the tutorial explains it is to make all this in 1 movie clip and then drag it outo the main seen but, the way that I need to use it is to have the contact movie clip in another movie clip instance and it just seems like the action scripting isnt working… I have everything completely set up and have the php file on my server but when I click the send button nothing is happening. I think this is because I am trying to do this from within another movie clip but I really need to find a way around this problem because I cant do this any other way but how Im trying now.

heres the specific code for the button that seems to not be working

  on (release) {
 // send variables in form movieclip (the textfields)
 // to email PHP page which will send the mail
 form.loadVariables("email.php", "POST");
}

also the other line of code is

  [font=Courier New][color=#003366]onClipEvent(data){
   _root.nextFrame();
}[/color][/font] 

that is supposed to be on the movie clip that would be on the stage but like I explained earlier this contact movie clip is actually being called from another movie clip called cliphome so what do I do?

If it would help I can post my fla but its about 5 megs so I didnt want to post it unless it was necessary

does anyone know what Im talking about !?

well I thought I had it but I guess I dont. I fixed the button issue. It was it little hard to understand that part of the tut that said to have the button on top of you form MC instead of in it so now it is calling to the email.php file… but guess what when I click on the send button it doesnt work. I know that it wont work locally so Ive uploaded it to my webserver and tried it there and no dice…
heres the PHP code as well maybe Ive made a mistake

 
<?php 
$sendTo = "zerosignal0@msn.com"; 
$subject = "customwheelsales.com customer question"; 
 
$headers = "From: " . $_POST["name"]; 
$headers .= "<" . $_POST["email"] . ">
"; 
$headers .= "Reply-To: " . $_POST["email"]; 
$message = $_POST["body"];
 
mail($sendTo, $subject, $message, $headers); 
?> 
 

So no one has any clue what Im talking about?!?!?

it seems to me like this isnt that tough of a problem but how is it in 2 days that Ive had no one respond at all?? Im starting to get frustrated at this stupid problem and have exhausted trying to figure out why I cant get it to work! I really could use some help! I dont just expect someone to waltz into my problem and fix it but I sure could use someone that has some experience that I could at least talk through what Im doing and maybe find a clue as to what is going wrong.

someone?!?

well i figured it out finally so nevermind…