-
Notifications
You must be signed in to change notification settings - Fork 6
/
starttest.php
28 lines (23 loc) · 858 Bytes
/
starttest.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
<?php include 'inc/header.php'; ?>
<?php
Session::checkSession();
$question = $exam->getQuestion();
$total = $exam->getTotalRows();
?>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="mt-5">Welcome to Online Exam</h1>
<p class="lead">Test Your Knowledge</p>
<br/>
<p>Number Of Question: </strong><?php echo $total; ?></p>
<p></p><strong>Question Type: </strong>Multiple Choice</p>
<a href="test.php?q=<?php echo $question['quesNo']; ?>" class="btn btn-success btn-lg">
<span class="fa fa-arrow-right"></span> Start Exam
</a>
<br/>
<br/>
</div>
</div>
</div>
<?php include 'inc/footer.php'; ?>