I have a url that contains these parameters:
<_ts1=blah>_ts1=blah
Internet Explorer takes it upon itself to change it to this (regardless of a lack of semi-colons):
<_ts1=blah>_ts1=blah
The url string is generated in PHP. Is there any way of protecting the url in IE without changing the parameter names (worst case scenario)?
Ta!
You should always put the ampersand as an entity like so:
I guess that IE treat < as a < sign, even if there is no ; at the end. (< being the < entity)