How to use file links in included PHP file
My code:
<?php require_once("include/header.php") ?>
(it is in index.php)
Another code (in header.php)
<?php require_once("../../include/config.php") ?>
This file link works for header.php but not in index.php. How can I make it work? :D
Edit:
I just have files and i need to access them using the included file so i need to use that will work relative to the path of this header.php, not to the file which includes it.
php web
add a comment |
My code:
<?php require_once("include/header.php") ?>
(it is in index.php)
Another code (in header.php)
<?php require_once("../../include/config.php") ?>
This file link works for header.php but not in index.php. How can I make it work? :D
Edit:
I just have files and i need to access them using the included file so i need to use that will work relative to the path of this header.php, not to the file which includes it.
php web
6
To answer this question, we would need more information about the structure of your files and folders.../
means that you go up one folder in the hierarchy.
– Qirel
Nov 15 '18 at 18:06
add a comment |
My code:
<?php require_once("include/header.php") ?>
(it is in index.php)
Another code (in header.php)
<?php require_once("../../include/config.php") ?>
This file link works for header.php but not in index.php. How can I make it work? :D
Edit:
I just have files and i need to access them using the included file so i need to use that will work relative to the path of this header.php, not to the file which includes it.
php web
My code:
<?php require_once("include/header.php") ?>
(it is in index.php)
Another code (in header.php)
<?php require_once("../../include/config.php") ?>
This file link works for header.php but not in index.php. How can I make it work? :D
Edit:
I just have files and i need to access them using the included file so i need to use that will work relative to the path of this header.php, not to the file which includes it.
php web
php web
edited Nov 15 '18 at 18:09
Iv Misticos
asked Nov 15 '18 at 18:02
Iv MisticosIv Misticos
197
197
6
To answer this question, we would need more information about the structure of your files and folders.../
means that you go up one folder in the hierarchy.
– Qirel
Nov 15 '18 at 18:06
add a comment |
6
To answer this question, we would need more information about the structure of your files and folders.../
means that you go up one folder in the hierarchy.
– Qirel
Nov 15 '18 at 18:06
6
6
To answer this question, we would need more information about the structure of your files and folders.
../
means that you go up one folder in the hierarchy.– Qirel
Nov 15 '18 at 18:06
To answer this question, we would need more information about the structure of your files and folders.
../
means that you go up one folder in the hierarchy.– Qirel
Nov 15 '18 at 18:06
add a comment |
2 Answers
2
active
oldest
votes
All include
/ require
/ require_once
statements using relative files are relative to the PHP process' current working directory which depends on how PHP runs. You can get the current working directory using the getcwd()
function and change it at runtime using chdir()
.
If you want to include a file relative to the current file regardless of the current directory, you can do something like:
<?php require_once(realpath(__DIR__) . "/../../include/config.php") ?>
Note the use of __DIR__
which is a magic constant that always represents the directory of file it is written in (not the including file).
add a comment |
Try this
<?php require_once("./include/header.php") ?>
It works for header.php, but not for requiring config.php
– Iv Misticos
Nov 15 '18 at 19:07
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53325427%2fhow-to-use-file-links-in-included-php-file%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
All include
/ require
/ require_once
statements using relative files are relative to the PHP process' current working directory which depends on how PHP runs. You can get the current working directory using the getcwd()
function and change it at runtime using chdir()
.
If you want to include a file relative to the current file regardless of the current directory, you can do something like:
<?php require_once(realpath(__DIR__) . "/../../include/config.php") ?>
Note the use of __DIR__
which is a magic constant that always represents the directory of file it is written in (not the including file).
add a comment |
All include
/ require
/ require_once
statements using relative files are relative to the PHP process' current working directory which depends on how PHP runs. You can get the current working directory using the getcwd()
function and change it at runtime using chdir()
.
If you want to include a file relative to the current file regardless of the current directory, you can do something like:
<?php require_once(realpath(__DIR__) . "/../../include/config.php") ?>
Note the use of __DIR__
which is a magic constant that always represents the directory of file it is written in (not the including file).
add a comment |
All include
/ require
/ require_once
statements using relative files are relative to the PHP process' current working directory which depends on how PHP runs. You can get the current working directory using the getcwd()
function and change it at runtime using chdir()
.
If you want to include a file relative to the current file regardless of the current directory, you can do something like:
<?php require_once(realpath(__DIR__) . "/../../include/config.php") ?>
Note the use of __DIR__
which is a magic constant that always represents the directory of file it is written in (not the including file).
All include
/ require
/ require_once
statements using relative files are relative to the PHP process' current working directory which depends on how PHP runs. You can get the current working directory using the getcwd()
function and change it at runtime using chdir()
.
If you want to include a file relative to the current file regardless of the current directory, you can do something like:
<?php require_once(realpath(__DIR__) . "/../../include/config.php") ?>
Note the use of __DIR__
which is a magic constant that always represents the directory of file it is written in (not the including file).
answered Nov 15 '18 at 18:37
shevronshevron
1,7791323
1,7791323
add a comment |
add a comment |
Try this
<?php require_once("./include/header.php") ?>
It works for header.php, but not for requiring config.php
– Iv Misticos
Nov 15 '18 at 19:07
add a comment |
Try this
<?php require_once("./include/header.php") ?>
It works for header.php, but not for requiring config.php
– Iv Misticos
Nov 15 '18 at 19:07
add a comment |
Try this
<?php require_once("./include/header.php") ?>
Try this
<?php require_once("./include/header.php") ?>
answered Nov 15 '18 at 19:03
Mehrdad SaamiMehrdad Saami
11
11
It works for header.php, but not for requiring config.php
– Iv Misticos
Nov 15 '18 at 19:07
add a comment |
It works for header.php, but not for requiring config.php
– Iv Misticos
Nov 15 '18 at 19:07
It works for header.php, but not for requiring config.php
– Iv Misticos
Nov 15 '18 at 19:07
It works for header.php, but not for requiring config.php
– Iv Misticos
Nov 15 '18 at 19:07
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53325427%2fhow-to-use-file-links-in-included-php-file%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
6
To answer this question, we would need more information about the structure of your files and folders.
../
means that you go up one folder in the hierarchy.– Qirel
Nov 15 '18 at 18:06