forked from COLTEC-DAW/E09-Show-do-Bilhao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperguntas.inc
93 lines (76 loc) · 2.69 KB
/
perguntas.inc
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
<?php
ob_start();
?>
<?php require 'classes.php';
$perguntas_file = file_get_contents("files/perguntas.json");
$perguntas_file_decoded = json_decode($perguntas_file);
$questoes = [0 => "vazio"];
$respostas = [0 => "vazio"];
$respostas_certas = [0 => "vazio"];
$questoes_objetos = [];
foreach ($perguntas_file_decoded as $questao) {
array_push($questoes_objetos, new Question($questao->enunciado, $questao->alternativas, $questao->resposta));
}
foreach ($questoes_objetos as $q) {
array_push($questoes, $q->enunciado);
array_push($respostas, $q->alternativas);
array_push($respostas_certas, $q->resposta);
}
function carregaPerguntas($id){
global $questoes;
global $respostas;
global $respostas_certas;
echo $id != 1 ? '<p class="flow-text center-align">Alternativas certas: '.($id-1).'</p>' : '';
echo '
<ul class="collection with-header">
<li class="collection-header"><h4>'.$questoes[$id].'</h4></li>
';
for ($k = 1; $k <= 5; ++$k){
echo $k == $respostas_certas[$id] ? '<a href="#!" class="collection-item active">'.$respostas[$id][$k].'</a>' : '<a href="#!" class="collection-item">'.$respostas[$id][$k].'</a>';
}
echo '</ul>';
echo '
<p></p>
<form action="perguntas.php" method="post">
<input name="resposta" type="radio" id="alternativa_a" value="1" />
<label for="alternativa_a">letra a</label>
<input name="resposta" type="radio" id="alternativa_b" value="2" />
<label for="alternativa_b">letra b</label>
<input name="resposta" type="radio" id="alternativa_c" value="3" />
<label for="alternativa_c">letra c</label>
<input name="resposta" type="radio" id="alternativa_d" value="4" />
<label for="alternativa_d">letra d</label>
<input name="resposta" type="radio" id="alternativa_e" value="5" />
<label for="alternativa_e">letra e</label>
<input type="hidden" name="questao_id" value="'.$id.'">
<input type="submit" name="Enviar" class="btn">
</form>
';
}
function verificaResposta($id, $alternativa){
global $respostas_certas;
if ($respostas_certas[$id] == $alternativa){
if ($id != 5) {
carregaPerguntas($id+1);
} else {
echo '
<p class="flow-text center-align">Você ganhou. Porém, não fez mais que sua obrigação.</p>
';
session_start();
error_reporting(0);
$bauducco = getdate()[mday].'/'.getdate()[mon].'/'.getdate()[year].'+'.'5';
// echo $bauducco;
setcookie($_SESSION["username"], $bauducco);
}
} else {
echo '
<p class="flow-text center-align">Você perdeu. Esperava mais de você.</p>
';
session_start();
error_reporting(0);
$bauducco = getdate()[mday].'/'.getdate()[mon].'/'.getdate()[year].'+'.($id-1);
// echo $bauducco;
setcookie($_SESSION["username"], $bauducco);
}
}
?>