|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-23 18:48 UTC] sniper@php.net
[2002-04-24 04:27 UTC] puskajler at telecom dot sk
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 14:00:01 2025 UTC |
Using the POST method cause cutting the first character from the name of the form control. Using the GET method works as expected (no cutting). example: <FORM METHOD=POST ACTION="debug.php"> <INPUT TYPE="submit" NAME="action" VALUE="val"> </FORM> gives result: [_POST] => Array ( [ction] => val ) quick-fix: just prefix all NAMEs with any char (NAME="action" becomes NAME="_action")