loadVariables("email.php","POST")

Can I run that code inside a movie clip? Becoz it doesn’t wanna work! Here’s my full code:

[AS]
clippyListener = new Object();
clippyListener.click = function (evt){
name = nameC.text;
email = emailC.text;
message = commentsC.text;
loadVariables(“email2.php”, “POST”);
}
sendB.addEventListener(“click”, clippyListener);
[/AS]

I’ve used this exact code on another form which ISN’T inside another movie clip and it worked. Well, then again it is kinda in another MC. Let’s see, here’s the other code:

[AS]
clippyListener = new Object();
clippyListener.click = function (evt){
form.nameB = form.name.text;
form.emailB = form.email.text;
form.loadVariables(“email.php”, “POST”);
}
signBtn.addEventListener(“click”, clippyListener);
[/AS]

That code is on the root and the form details are inside a MC labled “form”.

Why doesn’t the top code work and yet the bottom one does!?
Anyone?

PS - I do have 2 php files on my server: email.php & email2.php