How to pass parameters from php to flash?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

User avatar
egg82
Forum Contributor
Posts: 156
Joined: Sat Oct 01, 2011 9:29 pm
Location: Colorado, USA

Re: How to pass parameters from php to flash?

Post by egg82 »

this["variable"+i] is the same as saying:
this.variable1
this.variable2
this.variable3
etc...

so just use it as such. It works the exact same way, it's just a little more roundabout so you can have some control over masses of variables with only a few lines of code.

this["variable"+i] will be something like this.variable1 so make sure &variable1= is being passed through PHP
Post Reply