-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (33 loc) · 1.01 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
<?php
$title = "";
switch($_SERVER['PHP_SELF']) {
case '/UDManagement/login.php':
$title = 'Login';
break;
case '/UDManagement/dashboard.php':
$title = 'Dashboard';
break;
case '/UDManagement/employee.php':
$title = 'Employees';
break;
case '/UDManagement/profile.php':
$title = 'Profile';
break;
case '/UDManagement/payroll.php':
$title = 'Payroll';
break;
case '/UDManagement/educational_attainment.php':
$title = 'Educational Attainment';
break;
case '/UDManagement/seminar.php':
$title = 'Seminars';
break;
case '/UDManagement/training.php':
$title = 'Training';
break;
case '/UDManagement/employeehistory.php':
$title = 'Employee History';
break;
default:
$title = 'Index';
} ?> <title><?php echo $title . ' | UDManagement' ?></title>