Debuging Mode and Live Mode - Error Handling


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // USE IT FOR LIVE MODE | PROJECT IS OFFICAL RELEASED
  2. @ini_set('display_errors', 0);
  3.  
  4. // USE IT DEBUGGING MODE | PROJECT IS IN DEVELOPING
  5. @ini_set('display_errors', '1');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.