17-11-2008

PHP display errors (override ini settings if neccessary)

The following to display errors regardless of the settings to do with this  in the php.ini file

ini_set('display_errors', 1);
ini_set('log_errors', 1);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');
error_reporting(E_ALL);

Comments:

Your comment:

»

 

[x]