Php ini_set display_errors

Php ini_set display_errors
You can eanble error reporting in php as below :
Add the following code in the top of your file.

<?php 

  error_reporting(E_ALL);
  ini_set('display_errors', 1);

?>

Advertisements

Add Comment

📖 Read More