You need to make sure the path to the file is correct. The following code will look for config.php in the same directory as the script that you are running:
include('config.php');
If that does not work you can look at the error logs or turn on error reporting with the following code:
ini_set('display_errors', 1);
ini_set('error_reporting', E_ALL);
include('config.php');
The error message should now show you where it is looking for the file. The error will look something like the following:
Warning: include() [function.include]: Failed opening 'config.php' for inclusion (include_path='.:/usr/share/pear:/usr/share/php') in /path/to/your/script.php on line 4
The above message states that it could not find config.php at any of the following locations:
/path/to/your/
/usr/share/pear/
/usr/share/php/
requireinstead ofinclude, you don't have to guess whether or not your file is loaded. – Arjan Aug 29 '12 at 22:47