Tom-Hayes
1/19/2017 - 7:02 PM

PHP Include Examples

//Can be used multiple times

<?php include("navigation.php"); ?>


// Once only

<?php include_once("navigation.php"); ?>


// Including from the root

<?php
   $path = $_SERVER['DOCUMENT_ROOT'];
   $path .= "/common/header.php";
   include_once($path);
?>