-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
44 lines (41 loc) · 1.16 KB
/
index.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
34
35
36
37
38
39
40
41
42
43
<?php
session_start();
if (isset($_SESSION['chucvu'])) {
$role = $_SESSION['chucvu'];
} else {
$role = 'home';
}
/*------ Kiểm tra đăng nhập ------*/
//Không được truy cập trang này khi chưa đăng nhập
require_once('db.php');
if ($role === 'admin'){
if (isset($_GET['controller'])) {
$controller = 'admin/'.$_GET['controller'];
if (isset($_GET['action'])) {
$action = $_GET['action'];
}else {
$action = 'index';
}
}else {
$controller = $role.'/home';
$action = 'index';
}
} else if ($role === 'home'){
//$controller = $role.'/home';
$controller = 'home/login';
$action = 'index';
} else {
if (isset($_GET['controller'])) {
$controller = $_GET['controller'];
if (isset($_GET['action'])) {
$action = $_GET['action'];
}else {
$action = 'index';
}
} else {
$controller ='home';
$action = 'login';
}
}
require_once('route.php');
?>