|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-09-04 23:32 UTC] kalowsky@php.net
[2002-09-06 04:00 UTC] hholzgra@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 18:00:01 2025 UTC |
In earlier versions of PHP there was no need to define a variable before calling it ie. if(!uname){ echo("Incorect"); } Now all my old code doesn't work and I must replace it with if(empty($uname)){ echo("incorrect"); } I have tried turning the regiser_globals on and off in the .ini file as well as the adding ~E_NOTICE to teh error line... The only thing that works is using a previous .ini file.. but I need to know WHY? thanks Jesse