ID:               20133
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Closed
 Bug Type:         Arrays related
 Operating System: Linux
 PHP Version:      4.2.3
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2002-10-28 07:33:19] [EMAIL PROTECTED]

Form:
<form action="script.php" method="POST">
<input name="variable" value="lost and found"><br>
lost: <input name="array[lost]" value="lost and found"><br>
'lost': <input name="array['lost']" value="lost and found"><br>
long key: <input name="array[testoflongkey]" value="lost and
found"><br>
<input type="submit"><br>
</form>

script.php:
<?PHP
print_r ($_POST);
?>

When the form is submited (with "lost and found" string as input value)
the following output is displayed:

Array
(
    [variable] => lost and found
    [array] => Array
        (
            [lost] =>  and found
            ['lost'] =>  found
            [testoflongkey] =>  and found
        )

)

As you can see there are characters missing in result array.




------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=20133&edit=1

Reply via email to