I have a file in my main root folder that I want to include in a subfolder.
root
|folder X
|folder Y
|_ Folder Z
With in folder X is a test.php page that I want included in a php page in folder z.
What should my include path look like? (for IIS and apache)
php page in folder Z
include("../test.php");
Gives me this error:
Warning: Failed opening '../test.php' for inclusion (include_path='.;c:\php4\pear') in
Thx in advance,
Alex