On 18 Jun 2008, at 13:57, Iv Ray wrote:
James Dempster wrote: > Personally I use. > > <?php require_once(dirname(dirname(__FILE__)).'/config.php'); > > I think it's what most people do. A... very interesting, thanks. To get the path only I did this - $path = dirname(__FILE__); $parts = explode(DIRECTORY_SEPARATOR, $path); array_pop($parts); $INSTALL_PATH = implode(DIRECTORY_SEPARATOR, $parts); It's kind of long... If somebody has a better idea, I would be glad to hear.
$path = dirname(dirname(__FILE__)); That will get you the parent directory. -Stut -- http://stut.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php