PHP error reporting tips
Error messages are useful for finding out what went wrong but after
installation/deployment to website you shouldn't keep displaying error
messages to whole world. It's mostly about security. PHP shouldn't
show specific details or file locations in public error messages but
instead write them to Apache's log file. Still, someone needs to be
monitoring logs from time to time to notice if something is broken…
For more about PHP's error messages go to:
http://fi.php.net/manual/en/security.errors.php
http://fi.php.net/manual/en/errorfunc.configuration.php

