I have problem :-( <?php include ("/dir/include.php"); ?>
<?php include("../include.php"); ?>
help Me please
Where is include.php? I suspect you need to do include("./include.php") or just include("include.php")
Nick (the other one!)
The path supplied in include() needs to be file relative or the full server path.
Server path: include("/home/httpd/html/hosts/"); etc