PHP Error Handling: What are the different types of errors in PHP?
Basically there are three major types of errors in PHP Notices,Warnings and Fatal errors Notices Notices are small, non-critical errors that PHP encounters while executing a script.By default, such errors are not displayed to the user at all and these will not cause script termination. Condition like Accessing a variable that not define. …