ID: 21722 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Bogus Bug Type: Output Control Operating System: Windows 2000 PHP Version: 4.2.3 New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Thank you for your interest in PHP. You can change this behavior by reading http://www.php.net/manual/en/configuration.directives.php#ini.sect.data-handling (and especially the arg_separator.output stuff). Derick Previous Comments: ------------------------------------------------------------------------ [2003-01-18 04:08:03] [EMAIL PROTECTED] A session is generated with session_start(). The browser is set not to accept cookies. Inside the HTML-Code without the Session there would appear a code like: <a href="/index.php?entryid=0&category=0"></a> With the automatic adding of the session-id it will look like: <a href="/index.php?entryid=0&category=0&PHPSESSID=6865f7d1491ccaddd676430ede3328"></a> According to http://validator.w3.org/check this does not qualify as valid HTML: " The validator has found an entity (something like &this;) that it doesn't recognize. There are a few possibilities: A reference to a URI that uses & as a separator between parameters, such as "http://example.org/prog?x=1&y=2". To solve this problem, simply replace all the &'s in attribute values with & (user agents will convert them back before following the links.) " ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=21722&edit=1