ID: 44470 User updated by: kenny at amik dot ru Reported By: kenny at amik dot ru -Status: Open +Status: Closed Bug Type: *General Issues Operating System: Linux 2.6.22.17-0.1 PHP Version: 5.2.5 New Comment:
Okey. Thanks a lot! The issue was about Suhosin patch and it's suhosin.request.max_... suhosin.post.max_... and etc maximum length constraints I think the bug is closed =) I'm really happy Previous Comments: ------------------------------------------------------------------------ [2008-03-19 13:10:17] kenny at amik dot ru Sorry, I forgot - apache 2.2.8 installed on our server ------------------------------------------------------------------------ [2008-03-19 13:05:58] kenny at amik dot ru I try this one: ... <select name="ucResumeSearchForm:ucResumeSearchFormGeoBase:MXResume"> <option value="US">United States</option> </select> ... select name length is 53 chars - and print_r($_POST); printed Array ( [ucResumeSearchForm:ucResumeSearchFormGeoBase:MXResume] => US ) ------------------------------------------------------------------------ [2008-03-18 21:47:14] [EMAIL PROTECTED] Are you sure it's not those ':' chars in the name? (I can't remember for sure but I think it's not allowed..) ------------------------------------------------------------------------ [2008-03-18 16:19:30] kenny at amik dot ru Description: ------------ long name (more than 64 characters) in form's elements(text, select) did not appear in $_POST array after form was submitted Reproduce code: --------------- <?php echo "<pre>"; print_r($_POST); echo "</pre>"; ?> <form action="sort.php" method="post"> <input value="Save" type="submit"> <select name="ucResumeSearchForm:ucResumeSearchFormGeoBase:MXResumeSrchCriteria"> <option value="US">United States</option> </select> <input type="text" name="ucResumeSearchForm:ucResumeSearchFormGeoBase:MXResumeSrchCriteria:2" value="test"> </form> Expected result: ---------------- all data posted to the $_POST array Actual result: -------------- $_POST is empty array ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=44470&edit=1