<?php
 
ini_set('error_reporting', E_ALL);
 
#ini_set('include_path', dirname(__FILE__) . '/../../' . PATH_SEPARATOR . ini_get('include_path'));
 
 
$ConfigArray = array(
 
// Site specific settings
 
'LIB' => '../../',
 
'APP' => './app/',
 
'BASE' => 'http://skeleton/examples/blog/',
 
);
 
 
function dump($var, $name='') {
 
    echo $name . '<pre>' . print_r($var, 1) . '</pre>';
 
}
 
?>
 
 |