-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQ15.php
82 lines (66 loc) · 2.04 KB
/
Q15.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
<!DOCTYPE html>
<html>
<head>
<title>Q15</title>
<link rel="stylesheet" type="text/css" href="styles_Q.css">
</head>
<body>
<h1>Q15: Display the average GPA, max GPA, and min GPA for each course each semester.</h1>
<div class="notification">
<?php
$db_host = '127.0.0.1';
$db_user = 'root';
$db_password = 'root';
$db_db = 'INSY661Database';
$db_port = 8889;
$mysqli = new mysqli(
$db_host,
$db_user,
$db_password,
$db_db,
$db_port
);
if ($mysqli->connect_error) {
echo 'Errno: '.$mysqli->connect_errno;
echo '<br>';
echo 'Error: '.$mysqli->connect_error;
exit();
}
$sql = "SELECT
c.course_name,
s.sem_year,
ROUND(AVG(s.stud_gpa), 2) AS avg_gpa,
MAX(s.stud_gpa) AS max_gpa,
MIN(s.stud_gpa) AS min_gpa
FROM
Study s
JOIN
Courses c ON s.dept_id = c.dept_id AND s.course_id = c.course_id
GROUP BY
c.course_name, s.sem_year
ORDER BY
c.course_name, s.sem_year";
$res = $mysqli->query($sql);
echo '<table>';
echo '<tr>';
echo '<th>Course Name</th>';
echo '<th>Semester Year</th>';
echo '<th>Average GPA</th>';
echo '<th>Max GPA</th>';
echo '<th>Min GPA</th>';
echo '</tr>';
while ($row = $res->fetch_assoc()) {
echo '<tr>';
echo '<td>' . $row['course_name'] . '</td>';
echo '<td>' . $row['sem_year'] . '</td>';
echo '<td>' . $row['avg_gpa'] . '</td>';
echo '<td>' . $row['max_gpa'] . '</td>';
echo '<td>' . $row['min_gpa'] . '</td>';
echo '</tr>';
}
echo '</table>';
$mysqli->close();
?>
</div>
</body>
</html>