I am trying to tidy up the HTML generated by my PHP script so that the W3C validator accepts it as okay.
My application uses sessions. So PHP seems to append something like the following bold text to the <a> tags
The problem is that the W3C validator would like the & specified as &
Otherwise my application works okay.
Is there anyway I can persuade PHP (version 4.4.2) to use & instead of &?
Andrew
Hampshire, UK
My application uses sessions. So PHP seems to append something like the following bold text to the <a> tags
Code:
<a href='showstory.php?id=25[b]&PHPSESSID=4abf43d6b17...[/b]
The problem is that the W3C validator would like the & specified as &
Otherwise my application works okay.
Is there anyway I can persuade PHP (version 4.4.2) to use & instead of &?
Andrew
Hampshire, UK