-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.php
More file actions
31 lines (31 loc) · 785 Bytes
/
final.php
File metadata and controls
31 lines (31 loc) · 785 Bytes
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
<?php
// Start the session
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<?php
include 'head.php';
?>
<body>
<header>
<div class="container">
<h1>SQL Quizzer</h1>
</div><!-- end .container -->
</header>
<main>
<div class="container">
<h2>You're done!</h2>
<p>Congrats! You have completed the test.</p>
<p>Final score: <?php echo $_SESSION['score']; ?></p>
<a href="question.php?n=1" class="start">Take again!</a>
<a href="add.php" id="add_question" class="start">Add Question</a>
</div><!-- end .container -->
</main><!-- end main -->
<?php include 'footer.php' ?>
</body>
</html>
<?php
// Destroy the session.
session_destroy();
?>