How to display errors in a PHP file ?

1 · Subin Siby · April 17, 2013, 5:42 a.m.
When you code PHP some errors might have happened. But you won’t know that and the program don’t work. You can use PHP‘s error_reporting function to display errors. Here’s how to do it: Create a file named errors.php in the folder where the file with errors exist. Open the errors.php file in text editor and paste these codes in the file: error_reporting(E_ALL);ini_set("display_errors", 1);include("filename.php");? Replace filename.php with the name of the file that has errors....