Your script will stop if config.php can't be included if you use require(), for any reason. Ie it doesn't exist or PHP doesn't have privs to read the file.
include() will issue a warning if config.php cannot be included, but will continue running the script.
Use require() for vital files, and include() for other non-vital things.