|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-03-18 16:19 UTC] 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 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 20:00:01 2025 UTC |
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 )