|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-11-09 09:30 UTC] tularis@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 18:00:01 2025 UTC |
Description: ------------ With PHP 4.3.4 is no possible to verify if POST or GET variables is undefineds because the global variable $_POST is a Array, therefore the index of Array $_POST is not found. Reproduce code: --------------- <?php if(!$_POST["delivered"]){ echo "Yes"; } ?> Expected result: ---------------- Show the string "Yes" Actual result: -------------- Notice: Undefined index: delivered in c:\********\file.php on line 2 Yes