-
Notifications
You must be signed in to change notification settings - Fork 12
/
viewemp.php
85 lines (65 loc) · 2.41 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
82
83
84
85
<?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 | XYZ Corporation</title>
<link rel="stylesheet" type="text/css" href="styleview.css">
</head>
<body>
<header>
<nav>
<h1>XYZ Corp.</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="alogin.html">Log Out</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">NID</th>
<th align = "center">Address</th>
<th align = "center">Department</th>
<th align = "center">Degree</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['nid']."</td>";
echo "<td>".$employee['address']."</td>";
echo "<td>".$employee['dept']."</td>";
echo "<td>".$employee['degree']."</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>