Hi all,

What's the syntax for including/requiring files located in directories different than the root directory? Especially files from different sub directories under the root? Going down ("classes/globals.php") is ok, but going up ("../globals.php") makes problems

Example:

index.php:         include_once('classes/globals.php') -> works fine;
dbase.php:         include_once('../globals.php') -> generates an error;
controller.php:    include_once('../dataaccess/dbase.php') -> error;

root (dir)
+-classes (dir)
|  +-interface (dir)
|  | |-controller.php
|  +-dataaccess (dir)
|  | |-dbase.php
|  |globals.php
|index.php
|

I'm running PHP 4.3.2 with Apache 2 on WinXP box.

Thanks,
Allex

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to