5 lines
98 B
PHP
5 lines
98 B
PHP
|
<?php
|
||
|
// display all errors while testing
|
||
|
error_reporting(E_ALL);
|
||
|
ini_set('display_errors', 1);
|
||
|
?>
|