I’ve spent a day on this so far and just can’t figure it out. The problem is that Flash is apparently substituting & for & in my GET query params.
So for example, I’m sending into a URLLoader a URLRequest with a url similar to this:
http://foo.blah.com/app/index.php?abc=def&ghi=jkl&mno=pqr
I verified this by looking at the var in the debugger. Yet it’s failing on our server. Ethereal reports that what is actually going over the wire is this:
GET /app/index.php?abc=def&ghi=jkl&mno=pqr
Not the first, but the second & is being replaced with &.
I can’t figure out how to make it stop doing this. What could cause this? Or does anyone have any ideas of things I can investigate?
Use the data property to construct the passed GET variables (you will have to set the request method to GET as well, check out the AS3 documentation for more granular information).
example :