Code has been added to clipboard!
Make PHP Show Errors
 Example    
 <?php
  if(!file_exists('helloworld.txt')) {
    die('No such file exists!');
  } else {
    $doc = fopen('helloworld.txt', 'r');
  }
?>Code has been added to clipboard!
<?php
  if(!file_exists('helloworld.txt')) {
    die('No such file exists!');
  } else {
    $doc = fopen('helloworld.txt', 'r');
  }
?>