array in html header
array in html header
Out of context: Reply #8
- Started
- Last post
- 11 Responses
- tomkat0
1. make the file a php file
2. where you embed the swf make it "file.swf?myArr={$myArr}"
(outputting a php var)3. before the embed:
$myArr = $_GET["params"]4. call the url like this:
myfile.php?params=1,2,3,45. in Flash:
arrSeats = myArray.split(',');there you have it.