|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-08 10:57 UTC] sander@php.net
[2002-10-08 11:12 UTC] bretschneider at element5 dot com
[2002-10-08 11:13 UTC] bretschneider at element5 dot com
[2002-10-08 11:29 UTC] bretschneider at element5 dot com
[2002-10-08 11:39 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Feb 11 00:00:02 2026 UTC |
When you submit a form to a php-script like the following you can see that php cuts of the first 4 characters of the TEST[]-array values. this bug seams to be similar to 19792. <html> <form method="POST" action="test.html"> <input type="HIDDEN" name="Go" value="There"> <input type="checkbox" name="TEST[]" value="12345668"> 12345618<br> <input type="checkbox" name="TEST[]" value="22345679"> 22345629<br> <input type="checkbox" name="TEST[]" value="32345680"> 32345630<br> <input type="checkbox" name="TEST[]" value="42345690"> 42345640<br> <input type="checkbox" name="TEST[]" value="52345602"> 52345652<br> <input type="submit" name="hallo" value="Send"> </form> <? phpinfo(); ?> </html> in phpinfo(); you will see the following values ... _POST["TEST"] = Array ( [0] => 5668 [1] => 5679 [2] => 5680 [3] => 5690 [4] => 5602 )