Php in MC?

Hey everyone, I’m new here.

Just thought I’d get that out of the way real quick :slight_smile:

Anyway, I have this contact form in a movieClip and I can’t figure out where to put _parent./_root./this. or whatever I need to put in there for it to work, at the moment inside the movieclip it does nothing so it has to have something to do with it right? Anyway, here’s the code

on (release) {
         if (name eq "" or subject eq "" or message eq "" or email eq "") {
               stop();
         } else {
         loadVariablesNum("form.php", 0, "POST");
         gotoAndStop(2);
     }
}

I want this to work from the inside of a movieClip, but right now - it doesn’t :C Please help