-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
33 lines (27 loc) · 870 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/****************************
* File Name: config.php *
* Author: Ammar S.A.A *
* Output: Configuration *
****************************/
//error_reporting(0);
// Website Paths
define("WEBSITE_PATH", "C:/xampp/htdocs/lms/");
define("WEBSITE_URL", "http://localhost:8080/lms/");
// Database Configurations
define("DB_SERVER", "localhost");
define("USER", "root");
define("PASS", "");
define("DATABASE_NAME","lms");
// Admin Configuration
define("ADMIN_EMAIL", "[email protected]");
// Tables' Names
define('TBLADMIN', 'admin');
define('TBLAUTHORS', 'tblauthors');
define('TBLBOOKS', 'tblbooks');
define('TBLCATEGORIES', 'tblcategory');
define('TBLISSUEDBOOKS', 'tblissuedbooksdetail');
define('TBLFEEDBACK', 'tblfeedback');
define('TBLRULESANDREGULATIONS', 'tblrulesandregulations');
define('TBLSLIDER', 'tblslider');
define('TBLUSERS', 'tblusers');