I have
folder1:
file1.php,
file2.php
inside folder1 is folder2 where is file
file3.php
/folder1/file1,2.php
/folder1/folder2/file3.php
Now:
file2.php:
<?PHP
require("file1.php");
?>
file3.php
<?PHP
require("../file2.php");
?>
---------------- and finally problem-------------
Under linux this "multilevel" requires() are OK.
Under this f$$n m$ mustdie 200 it produces error which says
that file1.php is cant be included in file2.php because is not found etc. WHY?? And how to fix it.
Maybe I should change something php.ini?
Thank you