http://uk.php.net/manual/en/function.include.php
http://uk.php.net/manual/en/function.require.php
The only difference between require() and include() is that if an include fails, it errors. If a require fails, it freaks out and stops the page loading (in a good way). Therefore, you should use...