Difference between require() and include()
The require() statement includes and evaluates the specific file.The include() statement includes and evaluates the specified file include() produces a Warning while require() results in a Fatal Error.
That is
if filepath not found .. require() teriminates the program and gives fatal error , but include() not teriminate the program it gives warning msg and continues to program.
