A bit more detailed:
My xml is dynamically generated using GET variables I send to it.
I add the xml file with :
|
Quellcode
|
1
|
viewer.addVariable("xml","http://test.mysite.com/test.php?one=1&two=2");
|
I tried the test with:
- Normal &
- &
- &
Trying to send "one=1&two=2" with flash enabled, GET values are respectively sent as:
- one:1
- one:1
- one:1
two:2
With flash disabled:
- one:1
two:2 - one:1
amp;two:2
- one:1&two
How could I send the same values with flash disabled/enabled?