|
Posted by usenet on 11/22/94 11:28
On Tue, 4 Oct 2005 13:05:20 +1300, "windandwaves" <winandwaves@coldmail.com>
wrote:
>I have a flash file that I want to execute a short action script and then
>load a PHP file in the its own window, while posting some of the variables
>to this new script:
>
>e.g.
>A
>B
>C
>//below is where I get stuck
>post variables:
> x = 1;
> y = 2;
>open new url = 'test.php' with post variables
>//end
>
>in test.php I then want to be able to show those variables as follows:
>
><?php
> echo $_POST["x"];
> echo $_POST["y"];
>?>
>
>I have the ABC, but I need the correct syntax for the last few lines in
>flash.
If you're sending the values with no regard for server response, you can append
the values to the URL in Flash using GET syntax:
www.site.com/page.php?x=1&y=2
If you need bidirectional communication, look into the Flash LoadVars and
LoadVariables objects.
http://www.actionscripts.org/tutorials/beginner/loadVariables_and_loadVars/
HTH.
Navigation:
[Reply to this message]
|