>Perhaps detecting >if a variable has not been initialized within the code This is an E_NOTICE level error. <?php error_reporting(E_ALL); $foo++; ?> mario@itsuber ~ $ php test.php Notice: Undefined variable: foo in /home/mario/test.php on line 3
>Perhaps detecting >if a variable has not been initialized within the code This is an E_NOTICE level error. <?php error_reporting(E_ALL); $foo++; ?> mario@itsuber ~ $ php test.php Notice: Undefined variable: foo in /home/mario/test.php on line 3