Home | Login | Register | user control panel | view your posts |
question
FAQ
news
News
feedback
Feedback
HTML CSS PHP SQL
View unread posts | View new posts | View active posts
Login | Register | Search:
PHP display errors
user
forum by: user: nick, Post on: 2021-11-02 05:55:58, Posts: 129

php display errors

user: admin / Posts: 41 / post on: 2022-01-12 20:19:25
user
php display errors
Display PHP Errors via .htaccess Configuration
php_flag display_startup_errors on
php_flag display_errors on
user: admin / Posts: 42 / post on: 2022-01-12 20:24:56
user
php display errors

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);

Post User for this topic: title
Please Login to replay: Login | Register