Displaying errors is turned off in my web server... Now, Is it possible to enable errors for just one php file?
Displaying errors is turned off in my web server... Now, Is it possible to enable errors for just one php file?
Place this at the top of your file:
PHP Code:error_reporting(E_ALL ^ E_NOTICE);
borris83 (04-08-2009)
thanks for your reply.. I will try it
Bookmarks