Hi...
OK, basically...
I have data stored in a mysql database, and then I have a php file that puts the data from the database into php variables (e.g. $myPhpVar). After the php file makes these variables, there's a print() command which reads:

print("&myFlashVar=$myPhpVar");

After this, I want to load the contents from the flash variable(&myFlashVar) into a textbox in my flashfile to be displayed in an ,swf file.

Can anybody help?

Thanx

    If it is a matter of passing server-side rendered data to the flash swf on a load, the flash guy I work with likes to use LoadVars. Here is an example.

    Another simple (maybe even more simple) way is to use FlashVars when you call the flash inside the web page. Here is an example. It's very easy to do something like this...

    <PARAM NAME=FlashVars VALUE="<?print("&myFlashVar=$myPhpVar")?>">
      Write a Reply...