using Flash, I'm sending a bunch of variables to my php script that have ordered names. What I want is to use a "for" loop to identify each variable. This is how I would do it in Flash but don't know how to do it in php...
Code:
for(i=0; i<3; i++){
this["Item"+i] = i;
}
// the above code would be identical to typing the following...
Item0 = 0;
Item1 = 1;
Leave a comment: