PHP Include

Avatar of Chris Coyier
Chris Coyier am

Kann mehrmals verwendet werden

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

Nur einmal

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

Einbeziehung vom Stammverzeichnis

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