Create index.php

This commit is contained in:
Josh North 2014-08-23 23:07:41 -04:00
parent e1f741424d
commit af0f238894

13
index.php Normal file
View File

@ -0,0 +1,13 @@
<?php
/*** error reporting on ***/
error_reporting(E_ALL);
/*** define the site path constant ***/
$site_path = realpath(dirname(__FILE__));
define ('__SITE_PATH', $site_path);
/*** include the init.php file ***/
include 'includes/init.php';
?>