-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployee.php
120 lines (117 loc) · 5.62 KB
/
Employee.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
include 'connection.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>Employee @ JB </title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Pacifico&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<style type="text/css">
a.head{
font-family: 'Pacifico', cursive;
font-size: 30px;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<div class="container-fluid p-0">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark m-0">
<a class="navbar-brand head" style="color: #2268FF" href="">John Brothers</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link">Home</a>
</li>
<li class="nav-item">
<a class="nav-link">Sales</a>
</li>
<li class="nav-item">
<a class="nav-link active">Employee <span class="sr-only">(current)</span></a>
</li>
</ul>
<span class="navbar-text" style="font-size: 20px;font-weight: bold;">
EMPLOYEE
</span>
</div>
</nav>
<div class="container-fluid">
<div class="card shadow mb-4 mt-4">
<div class="card-header py-3">
<h3 class="m-0 font-weight-bold text-primary float-left">Employee Record</h3>
<a class="btn btn-primary float-right" href="./Add_Employee"><i class="fas fa-user-plus"></i> Add New Employee</a>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Employee ID</th>
<th>Name</th>
<th>Designation</th>
<th>Gross Salary (in Rs.)</th>
<th>Store ID</th>
<th>Department ID</th>
<th>Manager ID</th>
<th></th>
</tr>
</thead>
<tfoot>
<tr>
<th>Employee ID</th>
<th>Name</th>
<th>Designation</th>
<th>Gross Salary (in Rs.)</th>
<th>Store ID</th>
<th>Department ID</th>
<th>Manager ID</th>
<th></th>
</tr>
</tfoot>
<tbody>
<?php
$sql="SELECT * FROM `employee` ORDER BY `EID` ASC";
$result=mysqli_query($conn,$sql);
if(!$result){
header('location: https://httpstat.us/500');
}
if(mysqli_num_rows($result)>0){
while($row=mysqli_fetch_assoc($result)){
echo "<tr>
<td>".$row['EID']."</td>
<td>".$row['FNAME']." ".$row['LNAME']."</td>
<td>".$row['DESG']."</td>
<td>".$row['SAL']."</td>
<td>".$row['STID']."</td>
<td>".$row['DID']."</td>
<td>".$row['MGRID']."</td>
<td><button name='Edit' onclick='window.location.assign(\"Edit?q=".$row['EID']."\")' class='ml-4 btn btn-success rounded-circle' style=\"width: 40px;Heigth: 40px; \" title='Edit'><i style='color:white;' class=\"fas fa-user-edit\"></i></button>
<button onclick='window.location.assign(\"delete?q=".$row['EID']."\")' class='ml-4 btn btn-danger rounded-circle' style=\"width: 40px;Heigth: 40px; \" title='Delete'><i style='color:white;' class=\"fas fa-trash-alt\"></i></button></td>
</tr>";
}
}else{
echo "<tr><td colspan=\"11\"><center>No Record Found</center></td></tr>";
}
mysqli_close($conn);
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<footer class="bg-light pr-3 text-right text-secondary font-weight-bold">
© 2019: John Brothers
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>