If I have a variable number of things to POST to a PHP page using HTTPService, I need to use mx:request to get those things over. Is there a way to do this dynamically?
Here's the static way: <mx:HTTPService> ..<mx:request> ....<var1>value</var1> ....<var2>value</var2> ....<varN>value</varN> ..</mx:request> </mx:HTTPService> Is there a way to just iterate through a list of values and append it to a list of things to request? I'm trying to POST the flashvars, but there could be many parameters in them and I won't know how many. I need to pass all of them to the PHP page. The way I'm doing it now is to just concatenate them all together, delimited by &, and pass the one big string to the PHP page. Can I pass each parameter individually? Ricky