how to hide error, warning and notice in php page....
i tried "error_reporting(E_ALL ^ E_NOTICE);" and "error_reporting(0);" putting them on the 1st line after php opening ie(<?php) but they wont work
any suggestion....
Turn display_errors off. However, most errors can be prevented; and it is better to prevent errors than to conceal them. On a development server, you should keep display_errors enabled.