forked from muzaffertuna/Student-Teacher-Information-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdisplayallscores.php
47 lines (41 loc) · 1.96 KB
/
sdisplayallscores.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
<!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 Courses</title>
</head>
<body>
<h4>My Exams Information</h4>
<?php
include '.\dbConnect.php';
$courseCode = $_POST["courseCode"];
$ssn = $_POST["ssn"];
$query = "select STE.examname, sum(GPQ.pointsEarned)
from studenttakingexam STE NATURAL JOIN gradesperquestion GPQ
where STE.courseCode='$courseCode' and STE.sssn='$ssn'
GROUP by STE.examname, STE.yearr,STE.semester";
$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 Exams</caption>
<tr>
<th class="table-primary">Exam Name</th>
<th class="table-primary">Points Earned</th>
</tr>
<?php
while ($row = mysqli_fetch_assoc($result)) {
$examname = $row["examname"];
$pointsEarned = $row["sum(GPQ.pointsEarned)"];
echo "<td>" . $examname . "</td>";
echo "<td>" . $pointsEarned . "</td></tr>";
}
?>
</table>
</div>
</body>
</html>