If you want PHP to display runtime errors on the page, you have to enable display_errors, either in the php.ini or using the ini_set function.
You can choose which errors to display, with the error_reporting (or in the ini) function, which accepts E_* constants, combined using bitwise operators.
P...