-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (45 loc) · 1.32 KB
/
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
47
48
<?php include 'database.php';?>
<?php
/*
* Get the Question
*/
$query1 = "SELECT * FROM `questions`";
//Get Result
$res = $mysqli->query($query1) or die($mysqli->error.__LINE__);
$q_count = $res->num_rows;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css">
<title>PHP Quizzer</title>
</head>
<body>
<header>
<div class="container">
<h1>PHP Quizzer</h1>
</div>
</header>
<main>
<div class="container">
<h2>Test your PHP Knowledge</h2>
<p>This is an MCQ to test your PHP knowledge</p>
<ul>
<li><strong>Number of questions: </strong><?php echo $q_count; ?></li>
<li><strong>Type: </strong>MCQ</li>
<li><strong>Estimated Time: </strong><?php echo $q_count*0.5; ?> mins.</li>
</ul>
<a href="question.php?n=1" class="start">Start Quiz</a>
<a href="add.php" class="start">Add Questions</a>
</div>
</main>
<footer>
<div class="container">
Copyright © 2019, PHP Quizzer
</div>
</footer>
</body>
</html>