Configuration

Config.php

app > core > sys > config.php

            
// SITE
define('SITE_PUBLIC', $_PROTOCOL.$_SERVER['HTTP_HOST'].'/');
define('SITE_SSL', $_SSL);
define('SITE_ERRORS', 1);
define('SITE_PROD', 0);
// DIRECTORIES
define('DIR_BACK',$_DIR.'back/');
define('DIR_APP',$_DIR.'back/app/');
define('DIR_SYS',$_DIR.'back/sys/');
define('DIR_DB',$_DIR.'back/db/');
define('DIR_FRONT',$_DIR.'front/');
define('DIR_PAGE',$_DIR.'front/html/pages/');
define('DIR_TEMP',$_DIR.'front/html/templates/');
// FILES
define('FILE_APP',$_DIR.'back/sys/app.php');
// DATABASE
define('DB_CLASS', "seed");
define('DB_SERVER', "localhost");
define('DB_PORT', "9200");
define('DB_NAME', 'dbName');
define('DB_USER', 'root');
define('DB_PASS', 'root');


             
        
Name Description Default
SITE_PUBLIC Website Home URL $_SERVER['HTTP_HOST']
SITE_ERRORS Turns PHP Error Printing On 1
SITE_SSL Forces HTTPS Protocol 0
DIR_FRONT Front end Directory front
DIR_APP Application Directory back > app
DIR_PAGE Routing Directory front > html > pages
DIR_TEMP Template Directory front > html > templates
FILE_APP Application File back > sys > app.php

$_URL / $_PAGE / $_URL_VARS

Array of the URL path elements between slashes

            
// http://www.website.com/about/john
print_r($_URL);

/*OUTPUTS
Array
(
	[0] => about
	[1] => john
)
*/


print_r($_URL_VARS);

/*OUTPUTS
Array
(
	[0] => john
)
*/


echo $_PAGE;
/*OUTPUTS
about
*/