Send Variables one way from Flash to PHP, and then opening the PHP page

Hi. I want to send variables from my Flash (AS2) movie to a PHP file that would then process the variables and echo them, but echo in an HTML page. Basically, I want to make my Flash movie form the equivalent of an HTML form, in that, when it’s submitted, it sends the variables by POST and opens the PHP page for the PHP page to process and deal with, instead of sending the variables and loading the response from PHP into Flash.

I’ve been unable to use loadVariables in the usual way that I do it (i.e.:

form.loadVariables("myPHPfile.php", "POST);

) because that sends the variables to the PHP file, but then does not open the PHP file in the browser.

Is there anyway that I can make this work? How can I make the variables send from Flash and then open the PHP page in a new browser window, just like an HTML form would?

Thanks!