<?php
/* Author: Leon Bukhman *******************************************/
/* Global Application Constants ***********************************/

/******************************************************************
List of all the global application constants
*******************************************************************/

define ("BASE_URL",     "http://localhost/");       
define ("APP_PATH",     "D:\\Documents\\My Web\\"); //location in file system
define ("BASE_PATH",    "/lbsharp/");               //location on web server

define ("DB_HOST",       "host_name");
define ("DB_USER",       "user_name");
define ("DB_PASS",       "user_password");
define ("DB_NAME",       "database_name");

define ("IMAGE_PATH",    BASE_PATH."images/");
define ("INCLUDE_PATH",  BASE_PATH."include/");
define ("TEMPLATE_PATH""templates/");

define ("ROLE_GUEST",    "0");
define ("ROLE_USER",     "1");
define ("ROLE_EDITOR",   "2");
define ("ROLE_ADMIN",    "3");

?>