How to debug PHP code under Linux when just an blank page is shown?

include this both line in code to see what kind of error is.

<?php 
       ini_set("display_errors",1);
       error_reporting(E_ALL);
        //code goes here
?>

Leave a Comment