otuatail Posted July 23, 2006 Share Posted July 23, 2006 I have some pages in a sub directory but I still want to acces a configuration in the parent directory. I also want to re-direct to a page in the parent. I thought /.. but this is all the way back to the root. Yhis is a bit of the code.include ("functions.inc"); // /.functions.incif(.....){ header('Location: access.php'); // /.access.php exit;}Desmond. Link to comment https://forums.phpfreaks.com/topic/15377-access-a-parent-directory/ Share on other sites More sharing options...
Orio Posted July 23, 2006 Share Posted July 23, 2006 Let's say you got a folder called "outside" that has in it a file called "outside_file.php" and has a folder in it called "inside". "inside" folder has a file called "some_file.php", and in it you want to include "outside_file.php". You'll do this:[code]<?phpinclude("../outside_file.php");?>[/code]It's "../" which means parnet directory.Orio. Link to comment https://forums.phpfreaks.com/topic/15377-access-a-parent-directory/#findComment-62343 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.