-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal.php
32 lines (32 loc) · 970 Bytes
/
final.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
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Quizzer Buddy</title>
<link rel="stylesheet" href="css/style.css" type="text/css" / />
</head>
<body>
<header>
<div class="container">
<h1>Hello, Quizzer</h1>
</div>
</header>
<main>
<div class="container">
<h2> You're Done! </h2>
<p>
Congrats! You've 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" class="start" style="float: right">Got A Question ?</a>
</div>
</main>
<footer>
Copyright © 2019 Hello, Quizzer
</footer>
</body>
</html>