|
These two settings control whether PHP should display errors in the browser or be silent. It is recommended that you turn these two settings Off during production so that you don't accidentally display sensitive information about your Web site.
This is especially true for dynamic Web sites that send usernames and passwords to access a database.
To use these functions, you are required to create your own php.ini file within the root directory of your website.
In your php.ini file, this configuration will look like:
display_errors = Off display_startup_errors = Off
Of course, if you wish for these functions to be enabled, change the Off to On
|