|
You can communicate between flash/AS and PHP in a few ways.
The most simple is to just pass the variable as a flashvar.
IE, in your embed src.... foo.swf?varname=<?=$value?>
Obviously depending on your embed method (swfobject etc) the implementation will change.
Failing that, you can use AS to do a datapost to a URL, and receive back information.
I'm assuming the first will be what you're looking for.
|