Jump to content

Access a parent directory


otuatail

Recommended Posts

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.inc

if(.....)
{
header('Location: access.php');  //    /.access.php
exit;
}

Desmond.
Link to comment
Share on other sites

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]<?php
include("../outside_file.php");
?>[/code]

It's "../" which means parnet directory.

Orio.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.