ampersands in urls W3C validation problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Wiert Dijkkamp

    ampersands in urls W3C validation problem

    My website uses sessions and therefore sends PHPSessionID's throug the url
    whenever a browser does not accept cookies. This works well except tha when
    i try to validate the webpage with W3C it complains about my url's having &
    which I should change in &. How can I tel my webserver to do that?
    url: http://www.kunstenschool.nl

    --
    wiert
  • Daniel Tryba

    #2
    Re: ampersands in urls W3C validation problem

    Wiert Dijkkamp <wiert.dijkkamp @hccnet.nl> wrote:[color=blue]
    > My website uses sessions and therefore sends PHPSessionID's throug the url
    > whenever a browser does not accept cookies. This works well except tha when
    > i try to validate the webpage with W3C it complains about my url's having &
    > which I should change in &amp;. How can I tel my webserver to do that?[/color]



    Comment

    • Jan Pieter Kunst

      #3
      Re: ampersands in urls W3C validation problem

      Wiert Dijkkamp wrote:[color=blue]
      > My website uses sessions and therefore sends PHPSessionID's throug the url
      > whenever a browser does not accept cookies. This works well except tha when
      > i try to validate the webpage with W3C it complains about my url's having &
      > which I should change in &amp;. How can I tel my webserver to do that?
      > url: http://www.kunstenschool.nl
      >[/color]

      Probably like this:

      uncomment:

      arg_separator.o utput = "&amp;"

      in php.ini.

      JP

      --
      Sorry, <devnull@cauce. org> is a spam trap.
      Real e-mail address unavailable. 5000+ spams per month.

      Comment

      Working...