ID: 22539 Updated by: [EMAIL PROTECTED] Reported By: tech13 at powerweb dot net -Status: Open +Status: Closed Bug Type: Variables related Operating System: Windows 2000 PHP Version: 4.3.0 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: ------------------------------------------------------------------------ [2003-03-04 14:23:10] tech13 at powerweb dot net when i have more the 11 fields in a form that has enctype multipart, it doesn't show that ANY form was submitted. this case comes up frequantly while using phpMyAdmin which is how i first found the problem when i submit the 11 field with enctype it works fine 12 fields with enctype it doesn't 12 fields without enctype it works again (files won't upload in this case, but that isn't reflected it the test script) ---------script--------- <pre> <?php print_r($_POST); ?> </pre> <form method="post" enctype="multipart/form-data"> <input type="hidden" name="a" value="1"> <input type="hidden" name="b" value="2"> <input type="hidden" name="c" value="3"> <input type="hidden" name="d" value="4"> <input type="hidden" name="e" value="5"> <input type="hidden" name="f" value="6"> <input type="hidden" name="g" value="7"> <input type="hidden" name="h" value="8"> <input type="hidden" name="i" value="9"> <input type="hidden" name="j" value="10"> <input type="hidden" name="k" value="11"> <input type="submit" value="11 fields"> </form> <form method="post" enctype="multipart/form-data"> <input type="hidden" name="a" value="1"> <input type="hidden" name="b" value="2"> <input type="hidden" name="c" value="3"> <input type="hidden" name="d" value="4"> <input type="hidden" name="e" value="5"> <input type="hidden" name="f" value="6"> <input type="hidden" name="g" value="7"> <input type="hidden" name="h" value="8"> <input type="hidden" name="i" value="9"> <input type="hidden" name="j" value="10"> <input type="hidden" name="k" value="11"> <input type="hidden" name="l" value="12"> <input type="submit" value="12 fields"> </form> <form method="post"> <input type="hidden" name="a" value="1"> <input type="hidden" name="b" value="2"> <input type="hidden" name="c" value="3"> <input type="hidden" name="d" value="4"> <input type="hidden" name="e" value="5"> <input type="hidden" name="f" value="6"> <input type="hidden" name="g" value="7"> <input type="hidden" name="h" value="8"> <input type="hidden" name="i" value="9"> <input type="hidden" name="j" value="10"> <input type="hidden" name="k" value="11"> <input type="hidden" name="l" value="12"> <input type="submit" value="12 no enctype"> </form> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=22539&edit=1
