Classic blue Hot purple Cancel

Welcome to robertjamesphillips.com

Flickr Feed


Journal - Technology blog

This is a humble web design journal where i try and share any of the useful scraps of information i have found on the net, click here to return to the journal home.

Jul
29
Including from the root with php
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"); ?>

Leave a Reply