+ 2
The difference between include and require arises when the file beingincluded cannot be found: include will emit a warning ( E_WARNING ) and the script will continue, whereas requirewill emit a fatal error ( E_COMPILE_ERROR ) and halt the script.



