Ne Kr
Ne Kr

Reputation: 208

includes php files from subfolder in the root

I am just setting a project up, and I cannot make my header work from a subfolder.

From subfolder/mypage.php I would like to call the resources/includes/header-test.php. It have always worked for me to do that like this:

<?php include $_SERVER['DOCUMENT_ROOT'].'/resources/includes/header-test.php'; ?>

I cannot solve this, so does anybody have a suggestion how I can do this?

Upvotes: 1

Views: 36

Answers (1)

bvelastegui
bvelastegui

Reputation: 61

try this:

<?php include __DIR__.'/../resources/includes/header-test.php'; ?>

Upvotes: 2

Related Questions