PHP Include Path


/ Published in: PHP
Save to your folder(s)

If you're using includes that sit in different relative locations to the files your including *into*, you normally end up with stuff like `include("../../header.php")` in one place and `include("../../../header.php")` in another. This is a bit easier, but be sure to include a leading `/`, because depending on your sever configuration, it may or may not add one for you. It's better to have 2 `/`s than none.


Copy this code and paste it in your HTML
  1. <?php include($_SERVER['DOCUMENT_ROOT'] . "/includes/whatever.php"); ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.