OK, on my quest to get one PHP site that is actually valid XHTML 1.0
(strict)...
PHP 4.3.8: session.use_tra ns_sid=1
What is happening is the validator (that doesn't use cookies) sees
things like the following in the source (which are put in there from the
use_trans_sid setting after script execution):
....
<a href="/statistics/?PHPSESSID=1423 fa4c27d130ea743 ffd9912f60de4">
....
Which throws errors like:
Line 48, column 139: document type does not allow element "input" here;
missing one of "p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre",
"address", "fieldset", "ins", "del" start-tag
and
Line 66, column 194: cannot generate system identifier for general
entity "PHPSESSID"
Anyone have any hints or pointers to correct this?
--
Justin Koivisto - spam@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.
(strict)...
PHP 4.3.8: session.use_tra ns_sid=1
What is happening is the validator (that doesn't use cookies) sees
things like the following in the source (which are put in there from the
use_trans_sid setting after script execution):
....
<a href="/statistics/?PHPSESSID=1423 fa4c27d130ea743 ffd9912f60de4">
....
Which throws errors like:
Line 48, column 139: document type does not allow element "input" here;
missing one of "p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre",
"address", "fieldset", "ins", "del" start-tag
and
Line 66, column 194: cannot generate system identifier for general
entity "PHPSESSID"
Anyone have any hints or pointers to correct this?
--
Justin Koivisto - spam@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.
Comment