1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Accommodation_Management/config/config.php

28 lines
703 B
PHP
Raw Permalink Normal View History

2020-12-18 20:29:24 +01:00
<?php
/*
* General Configuration
*/
define('WEBSITE_NAME', 'AccomodationManager'); // Website name
/*
* Lang
*/
define('LANG_DEFAULT', 'fr'); // Default lang
define('LANG_PATH', 'src/lang/');
/*
* Routing Configuration
*/
define('WEBSITE_DEFAULT_PATH', 'index');
define('WEBSITE_PATH', '/AccomodationCPOA/'); // "/" for "https://website/" or "/sourcepath/" for "https://website/sourcepath/"
/*
* Database Configuration
*/
define('DB_HOST', "localhost");
define('DB_USER', "root");
define('DB_PASSWORD', "");
define('DB_NAME', "cannes");
/*
* Engine Path
*/
define('CONTROLLER_PATH','controller/');
define('MODELS_PATH','models/');
define('VIEW_PATH','view/');