|
Hi Anamika,
The include function will include the script, if an error generates it will continue to load the remainder of your script, however, if you use the require function, it will generate an error and stop processing the remainder. A require function is best used in sections of code that include mySQL login data etc and parts of the page that are needed to provide functionality.
|