Is it possible to include files that aren't in the web directory? If so, how do you do that?
Thanks,
include('/path/filename.php'); or even if your webdirectory is the current directory : include('../filename.php');
that way your page is out of the webpath, but is included anyway.