-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastrarAtividade.php
92 lines (74 loc) · 3.21 KB
/
cadastrarAtividade.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
<script>
function ajax(funcao, oficina){
var ajax = new XMLHttpRequest();
if(funcao=='ver'){
ajax.open("GET", "inscritosoficinas.php?oficina="+oficina, true);
document.getElementById('botaoVer'+oficina).innerHTML="<a href='javascript:void(0)' onclick=\"ajax('fechar', "+oficina+")\">[X]</a>";
}
if(funcao=='fechar'){
document.getElementById('botaoVer'+oficina).innerHTML="<a href='javascript:void(0)' onclick=\"ajax('ver', "+oficina+")\">Ver</a>";
document.getElementById('ver'+oficina).innerHTML="";
}
if(funcao=='editar'){
ajax.open("GET", "editarOficina.php?oficina="+oficina, true);
}
ajax.onreadystatechange = function(){
document.getElementById('ver'+oficina).innerHTML="Carregando...";
if (ajax.readyState==4 && ajax.status==200){
document.getElementById('ver'+oficina).innerHTML=ajax.responseText;
}
}
ajax.send();
}
</script>
<?php
session_start();
echo "<h2 id='atividades'>Cadastrar Atividades</h2>";
echo "<h4 style='text-align: center; color:#008F44'>".$_SESSION["mensagem"]."</h4><br />";
$_SESSION["mensagem"]="";
?>
<br>
<span class='inscricoes'>
<form method="POST" action="cadastroAtividade.php" id="formulario" class="formulario">
<input type="text" name="titulo" class="nome" placeholder="Título da atividade?" required/><br><br>
<input type="text" name="quem" class="cpf" placeholder="Palestrante?" required /><br><br>
<input type="text" name="local" class="email" placeholder="Local" required /><br><br>
<!--input type="number" name="vagas" class="email" placeholder="Número de vagas" required /><br><br-->
<!--input type="text" name="dia" class="nome" placeholder="Dia" required/><br><br-->
<select name="dia" class="pasta" required>
<option value="" disabled selected hidden>Dia da atividade</option>
<option value="22">22/04/2024</option>
<option value="23">23/04/2024</option>
<option value="23">24/04/2024</option>
</select><br><br>
<!--input type="text" name="horario" class="nome" placeholder="Horário" required/><br><br-->
<select name="horario" class="pasta" required placeholder="Horário da oficina">
<option value="" disabled selected hidden>Escolha o horário da Oficina</option>
<option value="21:20">21:20</option>
<option value="19:15">19:15</option>
</select><br><br>
<center><input type="submit" name="btn_cadastrar" class="btn_cadastrar" value="Cadastrar Atividade" /></center><br />
</form>
</span>
<br><br> <hr><br><br>
<h2>Atividades Cadastradas</h2><br>
<!--a href="inscritosoficinas.php" target="_BLANK">Ver Todos inscritos por oficina</a-->
<?php
include("conexao.php");
$query = mysqli_query($c, "SELECT * FROM ".$ano."_atividades") or die(mysqli_error($c));
echo "<table border><tr><th>Data</th><th>Palestra</th><th>Palestrante</th><th>Lugar</th></tr>";
while($m = mysqli_fetch_array($query)){
?>
<tr>
<td>Segunda - <?=$m["data"]?>/04</td>
<td><?=$m["atividade"]?></td>
<td><?=$m["palestrante"]?></td>
<td><?=$m["sala"]?></td>
</tr>
<tr>
<td colspan=8><span id='ver<?=$m["idOficina"]?>'></span></td>
</tr>
<?php
}
?>
</table>