Search code examples
filereferencefilesystemsincludeinclude-path

How does one reference files that are on the same level on a web server?


I want to reference header.inc in register.php how do I do it?

I want to reference header.inc in register.php how do I do it?


Solution

  • From register.php you could use this for including:

    <?php
      include('../includes/header.inc');
    ?>
    

    To link to it just send your href or what have you to ../includes/header.inc