forum by: user: nick, Post on: 2021-11-02 05:55:58, Posts: 129
php display errors
php display errors
php_flag display_startup_errors on php_flag display_errors on
The quickest way to display all php errors and warnings is to add these lines to your PHP code file:
ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);