View Single Post
Old 07-24-2008, 09:43 AM   #3 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

By the way, you cant require directories. you should only use require/include for php files.

Now if you want to set an include path, just do this
PHP Code:

set_include_path
('dir2');
require 
'myfile.php'
This will only use require/include to get from the include path dir2, it's limited till you change it back or change it to something else.
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote