Articles PHP PHP-Error-Reporting
tutorials - PHP and Web-Development.
While testing, use these to report PHP errors and notices on screen.
//THIS REPORTS ALL NOTICES AND ERRORSerror_reporting(-1);
//THIS REPORTS ALL ERRORS BUT NOT NOTICESerror_reporting(E_ALL & ~E_NOTICE);
Tag(s): PHP Error Reporting