Posts filed under ‘PHP’
Show PHP errors
By default PHP does not show you the errors or debugging, you need to enable this in the config or add the following code to your page to display the PHP errors.
<?php
error_reporting(E_ALL);
ini_set(‘display_errors’, ’1′);
?>
January 26, 2011 at 4:11 am Australian Search Engine Leave a comment
Recent comments