Hy everyone
i have a problem with my path
say i have a PHPfile in /home/bla/www/dev/source/test.php
in this test.php i want to include a file in
/home/bla/www/config/conf.php
<?php
include_once("");
?>
i dont want to include it like include
/home/bla/www/config/conf.php
How can i do it? PS. this fails
include_once("../../config/conf.php");