forked from muzaffertuna/Student-Teacher-Information-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smyprojects.php
41 lines (36 loc) · 1.56 KB
/
smyprojects.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
<!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>My Projects</title>
</head>
<body>
<h4>My Projects</h4>
<?php
include '.\dbConnect.php';
$ssn = $_GET['ssn'];
$query = "SELECT pName
FROM project_has_gradstudent
WHERE Gradssn = '$ssn' ";
$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>My Projects</caption>
<tr>
<th class="table-primary">Project Name</th>
</tr>
<?php
while ($row = mysqli_fetch_assoc($result)) {
$pName = $row["pName"];
echo "<td>" .$pName. "</td></tr>";
}
?>
</table>
</div>
</body>
</html>