Jump to content

Recommended Posts

I've got a configuration file, and it includes my database connection, but when the configuration file is loaded/included from different directory levels, it fails. So I created a script that is working to include from whatever directory the script happens to be in at the time, but I'm wondering if anyone sees any problem with this, or if anyone has a better solution. I know that if I am on a linux server then the slashes are back-slashes, but I'm not concerned with that so much right now. Is this going to be reliable?

 

define("PATH", dirname($_SERVER['PHP_SELF']));
$slash_count = substr_count(PATH,"/"); // finding where I am compared to root by counting slashes
for ( $i=0; $i<$slash_count-1; $i++) {
     $slashes .= '../';
}
require_once $slashes . "db_conn.inc.php";

Link to comment
https://forums.phpfreaks.com/topic/131125-include-from-different-directories/
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.