|
You have to remember that "Notice:" errors don't really harm your application; it will still run, you'll just get errors on the page when you want to view it.
If it's really buggin you too much, put one of the following lines at the beginning of your script:
error_reporting(0);
-OR-
error_reporting(E_ERROR | E_WARNING | E_PARSE); //my fav
|