FLASH PHP loadVars issue

Hi there,

I’m having an issues sending some vars to a php script. I’ve isolated the problem but I have no idea how to fix it…

The issue lies with the square brackets “[”.

When I type the vars in the address of a browser it works fine. For example…
myscript.php?theVariant[size]=big

That works perfectly, the php script picks it up.

Now if I try to send that same info thru flash, it doesn’t get thru. For example

[AS]
var myVars:LoadVars = new LoadVars();
myVars.sendAndLoad(‘myscript.php?theVariant[size]=big’, myVars, ‘GET’);[/AS]

Isn’t that exactly the same? Anyone got any ideas?

Thanks