-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion.php
More file actions
64 lines (61 loc) · 2.12 KB
/
question.php
File metadata and controls
64 lines (61 loc) · 2.12 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
require 'autoload.php';
$quiz = new Quiz();
if(!$_SESSION['quizpack']){
header('location: quiz_package.php');
}
$questions = $quiz->getAllQuestionID($_SESSION['quizpack']);
$class = $_GET['c'];
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Question Page</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="animatecss/animate.min.css">
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<style type="text/css">
body{
background-image: url(img/highqq.jpg);
background-size: cover;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12" style="margin-top: 4%;">
<div class="col-md-6">
<h2 style="text-transform: uppercase; font-weight: bolder; letter-spacing: 8px;
color: #00001a; border: none">questions</h2>
</div>
<div class="col-md-6">
<div class="col-md-12" style="margin-bottom: 100px;">
<div class="text-right">
<img src="img/logomain.png" alt="placeholder+image" width="150" height="45">
<h6 style="letter-spacing: 5px;">QUIZ APP</h6>
</div>
</div>
</div>
</div>
</div>
<?php foreach($questions as $q): ?>
<?php if($q->answered == 1){ ?>
<div class="countAns"><a href=""><?php echo $q->ques_id ?></a></div>
<?php }else{ ?>
<div class="count"><a href="question_page.php?q=<?php echo $q->quiz_pack_id; ?>&c=<?php echo $class; ?>&qid=<?php echo $q->ques_id; ?>"><?php echo $q->ques_id ?></a></div>
<?php }
?>
<?php endforeach; ?>
<div class="col-md-12" style="margin-top: 70px;">
<div class="text-right">
<h5 style="letter-spacing: 5px;">DEVELOPED BY PROGRAMAS HUB <span><img src="img/logo.png" alt="placeholder+image" width="100" height="100"></span></h5>
</div>
</div>
</div>
</body>
</html>