ID: 22070
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Verified
Bug Type: Session related
Operating System: Linux
PHP Version: 4.3.0
Previous Comments:
------------------------------------------------------------------------
[2003-02-05 08:33:42] [EMAIL PROTECTED]
When using session.use_trans_sid, a hidden input field containing the
session name and ID is placed right after the <form> tag. Unfortually,
this makes the HTML invalid if you're using XHTML 1.1, strict XHTML
1.0, or strict HTML 4.0: All input fields (even hidden ones) must be
placed inside a block-level element such as <div> or <p>.
The solution: When the parser discovers a form on the page, it should
place the hidden field containing the session name + ID right next to
one of the other input fields:
The original page:
<form action='some.php' method='post'>
<div>
<input type='text' name='yourName'/>
</div>
</form>
After being processed by the parser:
<form action='some.php' method='post'>
<div>
<input type='hidden' name='PHPSESSID' value='920203'/><input
type='text' name='yourName'/>
</div>
</form>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=22070&edit=1