..
how can i include php files from anthor Dirctory .... ::: i put some files like search.php in
matrix/search/
and i want to include header.inc from
matrix/
but when i do that
the file cant include the header
so how can i do that ?
::::
include "../header.inc";
check out a unix tutorial.
../ goes up one directory
if you need to inlude a file beyond one directory, it's best to give the root relative path.
http:www/main_directory/matrix/header.inc or /main_directory/matrix/header.inc