How do I turn off PHP Notices, Error and Warning?

Just write the below code


<?php
// Turn off all error reporting
error_reporting(0);
?>

Comments

Popular posts from this blog

How can I debug PHP cURL sessions?

[PHP] Create MySQL Trigger in PHP

how to create template file in php. why it is usefull