How to Hide/Disable PHP errors in WAMP Servers Windows ?
To hide php errors on WAMP server in windows open php.ini file, find following line of code
error_reporting = E_ALL
and replace it with
all future php errors will be hide/disable.
error_reporting = E_ALL & ~E_NOTICE
all future php errors will be hide/disable.
How to Show/Enable PHP errors in WAMP Servers Windows ?
To enable or show php errors in WAMP Server just add following line
error_reporting = E_ALL
in php.ini file.
2 comments:
Thanks for this solution...
Nice tutorial keep on writing
jobs in burdwan
Post a Comment