[PHP-DEV] SessionID and XHTML

2002-10-25 Thread Jens Lehmann
In my PHP-Version, Session-IDs are appended like this:

script.php?foo=4PHPSESSID=344e...

To be XHTML1-compliant it should be done this way:

script.php?foo=4amp;PHPSESSID=344e...

Is there any way I could PHP force to do this except adding
the Session-IDs manually or change the PHP-Code? Sorry,
if this has already been implemented in the CVS-Version.

Jens



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] SessionID and XHTML

2002-10-25 Thread Jens Lehmann
 On Fri, 25 Oct 2002, Jens Lehmann wrote:

  In my PHP-Version, Session-IDs are appended like this:
 
  script.php?foo=4PHPSESSID=344e...
 
  To be XHTML1-compliant it should be done this way:
 
  script.php?foo=4amp;PHPSESSID=344e...
 
  Is there any way I could PHP force to do this except adding
  the Session-IDs manually or change the PHP-Code? Sorry,
  if this has already been implemented in the CVS-Version.

 php.ini setting:
 ; The separator used in PHP generated URLs to separate arguments.
 ; Default is .
 ;arg_separator.output = amp;


Thank you! (If I knew there's a solution I would have posted to
php.general of course.)

Jens



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php