|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2002-10-06 20:40 UTC] plastic at ncnet dot pl
  [2002-10-08 13:37 UTC] iliaa@php.net
  [2002-10-17 19:12 UTC] plastic at ncnet dot pl
  [2002-10-30 11:41 UTC] iliaa@php.net
  [2002-11-14 01:48 UTC] sniper@php.net
 | |||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 05:00:02 2025 UTC | 
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 )