Monday, April 29, 2013

How to avoid error DEPRECATED,WARNING and NOTICE in php

It's so simple just add those lines before html tag.

<?php
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING ^E_DEPRECATED)
?>

No comments:

Post a Comment