Jump to content

Organizing PHP scripts in folders


Shadowing

Recommended Posts

so is it impossible if I have a users folder and a messaging folder located in the same folder.

 

To have a script in the users folder reading from the messaging folder

 

from a script in the messaging folder i thought i could just do this to read the users folder but apparently not

 

<? require("users/menu.php"); ?>

Link to comment
Share on other sites

For absolute paths you can use a couple things to avoid hardcoding the "/root/to/folder" part.

$_SERVER["DOCUMENT_ROOT"] . "/users/menu.php"

dirname(__FILE__) . "/../users/menu.php" // looks relative but is actually absolute
__DIR__ . "/../users/menu.php" // same for PHP 5.3+

There's a third and maybe fourth I'm forgetting.

 

I tend to avoid strictly relative paths because they're relative to the current working directory, and that's not always the same directory as the executing script. If you aren't aware of when it does(n't) change then the File Not Found errors can drive you crazy.

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.