1.

What is the main difference between require() and include()?

Answer»
require()INCLUDE()
If a required file not found, it will through a fatal error & stops the code executionIf an essential file not found, It will produce a WARNING and EXECUTE the remaining SCRIPTS.


Discussion

No Comment Found