forked from muzaffertuna/Student-Teacher-Information-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdisplayworker.php
50 lines (43 loc) · 2 KB
/
pdisplayworker.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Workers</title>
</head>
<body>
<h4>Workers</h4>
<?php
include '.\dbConnect.php';
$pName = $_POST['pName'];
$query = "select S.studentname, PS.pName as projectName
from project_has_gradstudent PS join student S on PS.Gradssn = S.ssn
where PS.pName = '$pName'
UNION
select I.iname , PI.pName as projectName
from project_has_instructor PI JOIN instructor I on PI.issn = I.ssn
where PI.pName = '$pName'";
$result = mysqli_query($conn, $query);
?>
<div class = "container col-6 justify-content-center mt-5">
<table class="table table-sm table-hover table-dark table-striped caption-top border-primary">
<caption>Workers In Project</caption>
<tr>
<th class="table-primary">Student Name</th>
<th class="table-primary">Project Name</th>
</tr>
<?php
while ($row = mysqli_fetch_assoc($result)) {
$studentname = $row["studentname"];
$projectName = $row["projectName"];
echo "<td>" .$studentname. "</td>";
echo "<td>" .$projectName. "</td></tr>";
}
?>
</table>
</div>
</body>
</html>