I have a page were I need w3c-validation (http://validator.w3.org). This is ruined for my php pages because php uses & when sending several vaiables through url.
This is not allowed according to w3c. If you are interested, look at: http://validator.w3.org/docs/errors.html#bad-entity
I get around this for most of my site (By replacing & with & - yes, you can use that in url's as well.)
My problem is that for browsers not accepting cookies, php attaches "PHPSESSID" and uses &. Like this:
"...login.php?iteration=1&PHPSESSID=592bed19bafba73edb8b"
Is there a way of getting around this? Forcing php to use another sign for listing multiple variables in url... or just use &?