Jul
Including from the root with php
29
Web Design, Server Side Languages
I came accross an excellent method for returning to the root of your folders with php, which is really useful when you are including the same file in many places. Below is a code snippet of an implementation:
<?php include ($_SERVER['DOCUMENT_ROOT']."/includes/file.php"); ?>