I'm validating all my php pages using the HTML validator from w3. I have session_start() at the beginning of all my pages.
The problem is that PHP takes a link that I wrote:
<a href="index.php?page=this">Home</a>
and it makes it this:
<a href="index.php?page=this&PHPSESSID=6e2a0d272188ff821851f3e1ef334e">Home</a>
According to this article I should replace all & with &. However, I can't do this because PHP automatically puts in &PHPSESSID.... in the link.
How do I fix this? Thanks for all your help in advance. I really appreciate it.