ID: 22156
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Bogus
Bug Type: Output Control
Operating System: linux
PHP Version: 4.3.0
New Comment:
You obviously did not search the bug database first.
This is _NOT_ bug. RTFM.
Previous Comments:
------------------------------------------------------------------------
[2003-02-10 17:34:30] [EMAIL PROTECTED]
This code produces html that doesn't pass the w3c code validator:
<form method=post action="Start.php?login">
<p>
Name:<br />
<input type="text" size=8 maxlength=8 name="name" value="$user">
<br />
Password:<br />
<input type="password" size=8 maxlength=8 name="password"
value="$pw><br />
<br />
<input type='submit' value='Log In'> <br />
</p>
</form>
The output code is:
<form method="post" action="Start.php?login"><input type="hidden"
name="PHPSESSID" value="c7d63b0826c43760e36c24ee481970a1">
<p>
Name:<br>
<input type="text" size="8" maxlength="8" name="name"
value="xxxxxx"> <br>
Password:<br>
<input type="password" size="8" maxlength="8" name="password"
value="yyyyyyy"><br>
<br>
<input type="submit" value="Log In"> <br>
</p>
</form>
(name and password values bogus).
Obviously the problem is the hidden input emitted by php to handle the
sessions variables which html4 required to be after the <p> tag.
This "bug" has no effect that I can detect.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=22156&edit=1