flash/php interaction
I am sending data from a flash program to a php script on a button push as follows:
var request:URLRequest = new URLRequest("test.php");
var vars:URLVariables = new URLVariables();
var loader:URLLoader = new URLLoader();
request.data = vars;
loader.load(request);
I would like to keep doing this, but I want the browser pointed to the php script instead of the page with the flash script after the button push.
Can anyone help me out?
|