difference
between include and require,
is that require will stop execution, if the required file cant be found or loaded
include will run the script, even if not found
include_once and require_once will only do it one time
if later in script, maybe in some included file,
same file is is called for an include, it will not include it a second time
you can read more here
[man]include[/man], [man]require[/man], [man]include_once[/man], [man]require_once[/man]
🙂