-
Notifications
You must be signed in to change notification settings - Fork 12
/
empproject.php
69 lines (51 loc) · 1.65 KB
/
empproject.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
<?php
$id = (isset($_GET['id']) ? $_GET['id'] : '');
require_once ('process/dbh.php');
$sql = "SELECT * FROM `project` where eid = '$id'";
$result = mysqli_query($conn, $sql);
?>
<html>
<head>
<title>Employee 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="eloginwel.php?id=<?php echo $id?>"">HOME</a></li>
<li><a class="homeblack" href="myprofile.php?id=<?php echo $id?>"">My Profile</a></li>
<li><a class="homered" href="empproject.php?id=<?php echo $id?>"">My Projects</a></li>
<li><a class="homeblack" href="applyleave.php?id=<?php echo $id?>"">Apply Leave</a></li>
<li><a class="homeblack" href="elogin.html">Log Out</a></li>
</ul>
</nav>
</header>
<div class="divider"></div>
<div id="divimg">
<table>
<tr>
<th align = "center">Project ID</th>
<th align = "center">Project Name</th>
<th align = "center">Due Date</th>
<th align = "center">Sub Date</th>
<th align = "center">Mark</th>
<th align = "center">Status</th>
<th align = "center">Option</th>
</tr>
<?php
while ($employee = mysqli_fetch_assoc($result)) {
echo "<tr>";
echo "<td>".$employee['pid']."</td>";
echo "<td>".$employee['pname']."</td>";
echo "<td>".$employee['duedate']."</td>";
echo "<td>".$employee['subdate']."</td>";
echo "<td>".$employee['mark']."</td>";
echo "<td>".$employee['status']."</td>";
echo "<td><a href=\"psubmit.php?pid=$employee[pid]&id=$employee[eid]\">Submit</a>";
}
?>
</table>
</body>
</html>