How to enable error reporting in PHP script
If error reporting is disabled by default on your host you have two solutions.
First is to add to your PHP script this little piece of code:
Additionally it is very useful to enable E_STRICT reporting level as well (not included in E_ALL). E_STRICT run-time notices, enable to have PHP suggest … Continue reading