Archive for the PHP Category

How to enable error reporting in PHP?

You can turn it on in the by including following in the file.

error_reporting(E_ALL);

Vigyan

|