What is difference between require() and include()?
require() and include() both are used for including files in PHP.
When you include a file using include() and that file is not exists then it will give warning(E_WARNING) and...