I would like to pass over 50 items of variables from php to flash. Actually I want to pass array with foreach statement, looping through the array and assigning loop index to the variables and flash again accept the php values through looping. Is this possible?
If passing values through foreach or loop statement is impossible, I would like to break a new line in tag. how can I break a new line in FlashVars tag?
You can pass the values as a comma separated string (provided the values doesn't have commas, of course) - that way you can make them into an array in flash using
string.split(",");