AS and PHP / Print command not working

Hi all,

my AS script is:


on (release) {
        if (!Email.length || Email.indexOf("@") == -1 || Email.indexOf(".") == -1) {
        EmailStatus = "Please enter a valid E-mail address";
    } 
    
    else if (!FirstName.indexOf("your") == 1) {
        EmailStatus = "Please Enter your name before Sending";
    } 

    else if (!ToComments.indexOf("comments") == 1) {
        EmailStatus = "Please enter some text in you message";
    } 
    
    else {
        loadVariablesNum ("send.php", 0, "POST");
        EmailStatus = "Sending... one Moment .. ";
            
}
}


and php


...
...

Print "_root.Mail.EmailStatus=Complete - Your mail has been sent";

The data are retrived from FLah and send on email OK, … but is not sending back print command. How do fix it? :confused:

Note: EmailStatus is an Input field as default jus tfor info. is working on filling form (eg: Please enter a valid E-mail address). but not getting the print from php

Working on Flash8 but fla is MX one