-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
46 lines (37 loc) · 979 Bytes
/
index.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
<?php include "database.php"; ?>
<?php
//Get the total questions
$query="select * from questions";
//Get Results
$results = $mysqli->query($query) or die ($mysqli->error.__LINE__);
$total = $results->num_rows;
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> Quizzer!</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="container">
<div class="container">
<h1>Quizzer</h1>
</div>
<main>
<div class="container">
<h2>Test your Knowledge</h2>
<h3>This is a multiple choice quize to test your knowledge about something</h3>
<li><strong>Number of Questions: </strong><?php echo $total; ?></ul>
<li><strong>Type: </strong>Multiple Choice</ul>
<li><strong>Estimatd Time: </strong><?php echo $total*0.5; ?> minutes</ul>
</ul>
<a href="question.php?n=1" class="start">Start Quiz</a>
</div>
</div>
</main>
<footer>
</footer>
</center>
</body>
</html>