|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-09-25 09:45 UTC] jani@php.net
[2007-09-25 11:16 UTC] mazz3x at gmail dot com
[2007-09-25 14:46 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 17 04:00:01 2025 UTC |
Description: ------------ when I try to submit i always get the same result... Reproduce code: --------------- <?php echo var_dump($_POST); echo "<form method=\"post\" action=\"{$_SERVER['PHP_SELF']}\"> <input type=\"text\" name=\"test\" /> <input type=\"submit\" /> </form>"; ?> Expected result: ---------------- array(1) { ["test"]=> string(7) "testing" } Actual result: -------------- array(0) { }