Hi
I am writing a script which trap all type of error (i do not need default error messages).
I have used error_reporting function with (E_ALL) ^ E_NOTICE) as argument. and then i have used set_error_handler() with my error handler function.
But the problem is if i call any undeclared function, my function is not getting executing(php gives it default error message Fatal error: Call to undefined function: undefined() in e:\inetpub\wwwroot\error.php on line 37 )
Does any one know why my function is not executing..?
Regards