ID: 44470
Updated by: [EMAIL PROTECTED]
Reported By: kenny at amik dot ru
-Status: Open
+Status: Feedback
Bug Type: *General Issues
Operating System: Linux 2.6.22.17-0.1
PHP Version: 5.2.5
New Comment:
Are you sure it's not those ':' chars in the name? (I can't remember
for sure but I think it's not allowed..)
Previous Comments:
------------------------------------------------------------------------
[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