-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewemp.php
81 lines (61 loc) · 2.33 KB
/
viewemp.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
<?php
require_once ('process/dbh.php');
$sql = "SELECT * from `employee` , `rank` WHERE employee.id = rank.eid";
//echo "$sql";
$result = mysqli_query($conn, $sql);
?>
<html>
<head>
<title>View Employee | Admin Panel | Cutting Tools</title>
<link rel="stylesheet" type="text/css" href="styleview.css">
</head>
<body>
<header>
<nav>
<h1>Trimurti Tools</h1>
<ul id="navli">
<li><a class="homeblack" href="aloginwel.php">HOME</a></li>
<li><a class="homeblack" href="addemp.php">Add Employee</a></li>
<li><a class="homered" href="viewemp.php">View Employee</a></li>
<li><a class="homeblack" href="assign.php">Assign Project</a></li>
<li><a class="homeblack" href="assignproject.php">Project Status</a></li>
<li><a class="homeblack" href="salaryemp.php">Salary Table</a></li>
<li><a class="homeblack" href="empleave.php">Employee Leave</a></li>
<li><a class="homeblack" href="attend.php">Employee Attendance</a></li>
<li><a class="homeblack" href="tmt/admin/admin_home.php">Products</li>
<li><a class="homeblack" href="alogin.html" >Logout</a></li>
</ul>
</nav>
</header>
<div class="divider"></div>
<table>
<tr>
<th align = "center">Emp. ID</th>
<th align = "center">Picture</th>
<th align = "center">Name</th>
<th align = "center">Email</th>
<th align = "center">Birthday</th>
<th align = "center">Gender</th>
<th align = "center">Contact</th>
<th align = "center">Address</th>
<th align = "center">Point</th>
<th align = "center">Options</th>
</tr>
<?php
while ($employee = mysqli_fetch_assoc($result)) {
echo "<tr>";
echo "<td>".$employee['id']."</td>";
echo "<td><img src='process/".$employee['pic']."' height = 60px width = 60px></td>";
echo "<td>".$employee['firstName']." ".$employee['lastName']."</td>";
echo "<td>".$employee['email']."</td>";
echo "<td>".$employee['birthday']."</td>";
echo "<td>".$employee['gender']."</td>";
echo "<td>".$employee['contact']."</td>";
echo "<td>".$employee['address']."</td>";
echo "<td>".$employee['points']."</td>";
echo "<td><a href=\"edit.php?id=$employee[id]\">Edit</a> | <a href=\"delete.php?id=$employee[id]\" onClick=\"return confirm('Are you sure you want to delete?')\">Delete</a></td>";
}
?>
</table>
</body>
</html>