View Single Post
Old 04-24-2008, 01:53 PM   #4 (permalink)
Village Idiot
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

At the beginning of every file, put something like
PHP Code:
define('IN_SCRIPT',true); 
And at the beginning of every source file that you dont want directly accessed.
PHP Code:
if(!IN_SCRIPT){die("No Direct Access");} 
__________________

Village Idiot is offline  
Reply With Quote