-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.php
78 lines (67 loc) · 2.28 KB
/
home.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php include('header.php'); ?>
<?php
include_once('controller/connect.php');
$dbs = new database();
$db=$dbs->connection();
$TotalEmp =mysqli_query($db,"select count(EmployeeId) as emp from employee where RoleId !='1' ");
$TotalEmploId = mysqli_fetch_assoc($TotalEmp);
$pandingleave = mysqli_query($db,"select count(LeaveStatus) as pleave from leavedetails where LeaveStatus='Pending'");
$tpandingleave = mysqli_fetch_assoc($pandingleave);
?>
<ol class="breadcrumb" style="margin: 10px 0px ! important;">
<li class="breadcrumb-item" title="Home"><a href="index.php">Home</a></li>
</ol>
<!--four-grids here-->
<div class="four-grids" style="margin-bottom: 30px; margin-top: 10px; background: white; ">
<div class="col-md-3 four-grid">
<div class="four-agileits">
<a href="employeeview.php">
<div class="icon">
<i class="glyphicon glyphicon-user" aria-hidden="true"></i>
</div>
<div class="four-text">
<h3>Employee</h3>
<h4><?php echo(isset($TotalEmploId['emp']))?$TotalEmploId['emp']:"";?></h4>
</div>
</a>
</div>
</div>
<div class="col-md-3 four-grid">
<div class="four-agileinfo">
<a href="leaverequest.php">
<div class="icon">
<i class="glyphicon glyphicon-list-alt" aria-hidden="true"></i>
</div>
<div class="four-text">
<h3>Leave Request</h3>
<h4><?php echo(isset($tpandingleave['pleave']))?$tpandingleave['pleave']:"";?></h4>
</div>
</a>
</div>
</div>
<!-- <div class="col-md-3 four-grid">
<div class="four-w3ls">
<div class="icon">
<i class="glyphicon glyphicon-folder-open" aria-hidden="true"></i>
</div>
<div class="four-text">
<h3>Projects</h3>
<h4>12,430</h4>
</div>
</div>
</div> -->
<!-- <div class="col-md-3 four-grid">
<div class="four-wthree">
<div class="icon">
<i class="glyphicon glyphicon-briefcase" aria-hidden="true"></i>
</div>
<div class="four-text">
<h3>Old Projects</h3>
<h4>14,430</h4>
</div>
</div>
</div> -->
<div class="clearfix"></div>
</div>
<!--//four-grids here-->
<?php include('footer.php'); ?>