Brian Dunning wrote:
Is there a command that will set the include path to the web server root?

I'm trying to set up a directory structure where include files will be called from all different folder depths, so I'll need to call them absolutely like:

  include('/includes/file.php');

where the above will work no matter from which level it's called. Thanks...

- Brian


You can set your include path in a variety of ways...

.htaccess (per directory/vhost)
httpd.conf (per vhost)
php.ini (global)
ini_set() (per script)

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]

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



Reply via email to