-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion_page.php
204 lines (183 loc) · 6.65 KB
/
question_page.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<?php
require 'autoload.php';
$quiz = new Quiz();
if(!$_SESSION['quizpack']){
header('location: quiz_package.php');
}
$class = $_GET['c'];
$ques_id = $_GET['qid'];
$quiz->updateAsAnswered($ques_id,$_SESSION['quizpack']);
$question = $quiz->getAllQuestion($_SESSION['quizpack'],$ques_id);
?>
<!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">
<link rel="stylesheet" type="text/css" href="css/prettyCheck.css">
<link rel="stylesheet" href="css/simplyCountdown.theme.default.css">
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script src="js/simplyCountdown.min.js"></script>
<style type="text/css">
body{
background-color: #00001a;
}
.question-id{
position: absolute;
top: -20px;
left: -30px;
width: 100px;
height: 100px;
background-color: #58cfff;
color: #00001a;
padding: 30px;
border-radius: 50%;
font-size: 65px !important;
font-weight: bold;
line-height: 50px;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="container" style="margin-top: 1%;">
<div class="col-md-6">
<h2 style="color: white;">Question</h2>
</div>
<div class="col-md-6">
<div class="text-right">
<div class="time-circle" style="width: 120px; height: 120px; border-radius: 50%; background-color: white; padding: ; float: right">
<h2 class="text-center"> </h2>
<h1 class="text-center" style="font-weight: bold; font-family: arial; font-size: 48px"><span id="timer"></span></h1>
</div>
</div>
</div>
</div>
<div class="row rw">
<div class="container">
<div class="col-md-12 col-lg-12 ap" style="">
<h3 style="padding: 40px 10px 40px 80px; background-color: rgb(255,255,255); border-radius: 5px;"><span class="question-id" style=""><?php echo $question->ques_id ?></span> <?php echo $question->question ?>?</h3>
<form id="form" style="margin-top: 20px;">
<div class="col-md-6 col-lg-6" style="background-color: white; padding: 20px 10px 0px 30px; border-radius: 50px; margin-bottom: 20px;">
<div class="pretty p-default p-curve p-thick">
<input id="option" value="<?php echo $question->option_A ?>" type="radio" name="good" >
<div class="state p-success-o">
<label style="font-size: 18px;">A. <?php echo wordwrap($question->option_A,48,"\n<BR>",TRUE) ?></label>
</div>
</div>
</div>
<div class="col-md-6" style="background-color: white; padding: 20px 10px 0px 30px; border-radius: 50px;margin-bottom: 20px;">
<div class="pretty p-default p-curve p-thick">
<input id="option" value="<?php echo $question->option_B ?>" type="radio" name="good">
<div class="state p-success-o">
<label style="font-size: 18px;">B. <?php echo wordwrap($question->option_B,48,"\n<br>",TRUE) ?></label>
</div>
</div>
</div>
<div class="col-md-6" style="background-color: white; padding: 20px 10px 0px 30px; border-radius: 50px; margin-bottom: 20px;">
<div class="pretty p-default p-curve p-thick">
<input id="option" value="<?php echo $question->option_C ?>" type="radio" name="good">
<div class="state p-success-o">
<label style="font-size: 18px;">C.<?php echo wordwrap($question->option_C,48,"\n<br>",TRUE) ?></label>
</div>
</div>
</div>
<div class="col-md-6" style="background-color: white; padding: 20px 10px 0px 30px; border-radius: 50px; margin-bottom: 20px;">
<div class="pretty p-default p-curve p-thick">
<input id="option" value="<?php echo $question->option_D ?>" type="radio" name="good">
<div class="state p-success-o">
<label style="font-size: 18px;">D.<?php echo wordwrap($question->option_D,48,"\n<br>",TRUE) ?></label>
</div>
</div>
</div>
<input type="hidden" id="answer" value="<?php echo $question->answer; ?>" name="answer" style="">
<div class="btn-submit" style="margin-bottom: -40px;">
<button id="submit" class="btn btn-success btn-lg btn-block submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
<div id="alarm"></div>
<div id="backto"><a href="scoreboard.php" style="background-color: #58cfff; color: #00001a;border-radius: 50px; padding: 10px; width: 30%;">Back to Scoreboard</a></div>
</body>
<script type="text/javascript">
function getRadioVal(form, name) {
var val;
var radios = form.elements[name];
for (var i=0, len=radios.length; i<len; i++) {
if ( radios[i].checked ) {
val = radios[i].value;
break;
}
}
return val;
}
function updateCorrect(qp,cl,flag)
{
var data = {
qp: qp,
cl: cl,
flag:flag
}
$.ajax({
type: 'post',
cache: false,
url: 'update.php',
data: data,
success: function(xhr){ console.log(xhr);}
});
return true;
}
function updateWrong(qp,cl,flag)
{
var data = {
qp: qp,
cl: cl,
flag:flag
}
$.ajax({
type: 'post',
cache: false,
url: 'update.php',
data: data,
success: function(xhr){ console.log(xhr);}
});
return true;
}
var timeleft = <?php echo $quiz->getQuizTimer($_SESSION['quizpack']) ?>;
var downloadTimer = setInterval(function(){
document.getElementById("timer").innerHTML = timeleft + "";
timeleft -= 1;
var bool = false;
if(timeleft <= 0){
clearInterval(downloadTimer);
setTimeout(function(){
updateWrong(<?php echo $_SESSION['quizpack']?>,"<?php echo trim($class) ?>",0);
$("#submit").attr('disabled','disabled');
$("#backto").show();
},1000);
}
}, 1000);
$("#submit").on('click', function(ev){
clearInterval(downloadTimer);
ev.preventDefault();
var val = getRadioVal( document.getElementById('form'), 'good' );
var answer = $("#answer").val();
if(val === answer ){
$("#alarm").html("<div>Answer is: <span class='success'> Correct!</span></div>");
updateCorrect(<?php echo $_SESSION['quizpack']; ?>,"<?php echo trim($class) ?>",1);
$("#backto").show();
}
if(val !== answer){
$("#alarm").html("<div>Answer is: <span class='wrong'> Wrong!</span></div>");
updateWrong(<?php echo $_SESSION['quizpack']?>, "<?php echo trim($class) ?>",0);
$("#backto").show();
}
})
</script>
</html>