ID: 19792 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open -Bug Type: *General Issues +Bug Type: IIS related Operating System: Windows NT 5.0 build 2195 PHP Version: 4.2.3 New Comment:
server: Microsoft-IIS/5.0 Previous Comments: ------------------------------------------------------------------------ [2002-10-06 20:32:55] [EMAIL PROTECTED] When I send some data using POST method, PHP looses first char of the first variable's name. For example: <!-- my html file --> <form action="some_file.php" method="POST"> <input name="first_var" value="some_value"> <input name="second_var" value="other_value"> </form> <!-- some_file.php --> <? print_r($_POST); ?> I get: Array ( [irst_var] => some_value [second_var] => other_value ) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=19792&edit=1