Description |
Category: Security |
A global variable is used before it is defined.
You may see this warning if you rely on register_globals or variables
defined in external include files, in which you may choose to ignore it.
However, note that this may cause the code to behave in unpredictable
ways when run in certain contexts.
Example
// $a was never initialized!
if ($a > 0) {
...
}