How to use file links in included PHP file










0















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.










share|improve this question



















  • 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















0















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.










share|improve this question



















  • 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













0












0








0


0






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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • 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












2 Answers
2






active

oldest

votes


















1














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






share|improve this answer






























    0














    Try this
    <?php require_once("./include/header.php") ?>






    share|improve this answer























    • It works for header.php, but not for requiring config.php

      – Iv Misticos
      Nov 15 '18 at 19:07










    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
    );



    );













    draft saved

    draft discarded


















    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









    1














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






    share|improve this answer



























      1














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






      share|improve this answer

























        1












        1








        1







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






        share|improve this answer













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







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 15 '18 at 18:37









        shevronshevron

        1,7791323




        1,7791323























            0














            Try this
            <?php require_once("./include/header.php") ?>






            share|improve this answer























            • It works for header.php, but not for requiring config.php

              – Iv Misticos
              Nov 15 '18 at 19:07















            0














            Try this
            <?php require_once("./include/header.php") ?>






            share|improve this answer























            • It works for header.php, but not for requiring config.php

              – Iv Misticos
              Nov 15 '18 at 19:07













            0












            0








            0







            Try this
            <?php require_once("./include/header.php") ?>






            share|improve this answer













            Try this
            <?php require_once("./include/header.php") ?>







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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

















            • 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

















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3