-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_exams.php
More file actions
46 lines (38 loc) · 1.18 KB
/
user_exams.php
File metadata and controls
46 lines (38 loc) · 1.18 KB
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
<?php
include 'db_connection.php';
session_start();
if (!isset($_SESSION['user_id'])) {
header('location:main_page.php');
exit();
}
$select_exams = $conn->prepare("SELECT * FROM exams");
$select_exams->execute();
$exams = $select_exams->fetchAll(PDO::FETCH_ASSOC);
?>
<!DOCTYPE html>
<html lang="en">
<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">
<title>Exams</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<section class="flex">
<a href="home.php" class="logo">Exam Overflow</a>
</section>
</header>
<section class="form-container">
<h3>Available Exams</h3>
<?php foreach ($exams as $exam) { ?>
<div class="box">
<h3><?= $exam['title'] ?> (Grade: <?= $exam['grade'] ?>)</h3>
<a href="view_exams.php?exam_id=<?= $exam['id'] ?>" class="btn">View Exam</a>
</div>
<?php } ?>
</section>
</body>
</html>