-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin_home.php
More file actions
50 lines (43 loc) · 967 Bytes
/
admin_home.php
File metadata and controls
50 lines (43 loc) · 967 Bytes
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
44
45
46
47
48
49
<?php
//============================================================+
// File name : admin_home.php
//
// Description : Home page for admin
//
// Author: Aditya Mathur
//
// (c) Copyright:
// Aditya Mathur
// eztasker.com
//
// License:
// Copyright (C) 2014 Aditya Mathur - eztasker.com
//============================================================+
session_start();
if(isset($_SESSION['li_uname111'])){
$e=$_SESSION['li_uname111'];
$type=1;
}
else{
header('location:login.php');die; //kill script & jump to login page
}
?>
<!-- Header -->
<?php include('./includes/header.php');?>
<div class="">
<!-- Menus -->
<?php include './includes/menu.php';?>
</div>
<div class="spacer"></div>
</div>
<table class='main-table'>
<tr>
<td><br/><h3><?php echo $title;?></h3></td>
</tr>
</table>
<table class='main-table'>
<tr>
<td><img src="images/front.jpg"></td>
</tr>
</table>
<?php include './includes/footer.php';?>