Hi all,

I used sesssion start in the header of the page and somehow generates hidden PHPSESSID tags to all the URLs on the page.

Now, I want to validate my page with XHTML and I can't seem to find a way to replace the & with & (which caused the validation error).

My question is to find a way to get rid of that hidden tag or any way around that would be great!

Here is a link to the validation of my page, you will see alot of errors relating to this issue.
XHTML validator to my page

Thanks

    EDIT: I found a quick fix, GOOGLE is our friend ...

      ini_set('arg_separator.output', '&');

      for those who look inside here and want to find a solution 😉

      of course you could change that wherever possible, but inside your scripts is wlways possible, even if you have no access to php.ini or .htaccess

        Write a Reply...