Display all PHP Errors and Warnings
Saturday, March 20, 2010 1:14Posted in category PHP
No Comments
How do i display errors in php if error display setting is off in my server configuration?
Here are the two simple things to display errors even if the error display setting is off in server.
error_reporting(E_ALL);
ini_set(‘display_errors’, ’1′);
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.