-
Notifications
You must be signed in to change notification settings - Fork 0
/
cursos-associados.php
113 lines (110 loc) · 2.7 KB
/
cursos-associados.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
<html>
<?php
include("head.php");
include("bd.php");
?>
<?php
session_start();
$result = $_SESSION["idAssoc"];
?>
<body>
<div align="center">
<fieldset class="halffield">
<legend>Cadastrar Curso</legend>
<form id="frm-curso" name="frm-curso" method="POST">
<table style=" width:100%;border:0;">
<tbody class="text-10">
<tr>
<th>Curso</th>
<th>Data de Realização</th>
<th> </th>
</tr>
<tr>
<td>
<select class="formulario input-sm" id="cursos" name="cursos">
<?php
$cursos = buscaCursos($conn);
foreach($cursos as $curso) :
?>
<option value="<?=$curso->getIdCurso();?>">
<?=$curso->getCurso();?>
</option>
<?php
endforeach
?>
</select>
</td>
<td>
<input class="formulario input-sm" type="date" id="dataCurso" name="dataCurso" value="">
</td>
<td>
<input class="btn btn-primary btn-sm" type="button" id="btn-cursos" name="btn-cursos" value="Cadastrar">
</td>
</tr>
</tbody>
</table>
</form>
</fieldset>
</div>
<hr></hr>
<br>
<div id="divretorno" name="divretorno" align="center">
<table class="relatorio">
<thead>
<tr>
<th>Curso</th>
<th>Data do Curso</th>
<th>Data de Reciclagem</th>
<th> </th>
</tr>
</thead>
<tbody>
<?php
$realizados = cursosAssociados($conn,$result);
foreach($realizados as $cursoRealizado) :
?>
<tr>
<td><?=$cursoRealizado->getCurso();?></td>
<td style="text-align: center;"><?=dateToBR($cursoRealizado->getDataCurso());?></td>
<td style="text-align: center;"><?=dateToBR($cursoRealizado->getDataReciclagem());?></td>
<td style="text-align: center;">
<button class="btn btn-danger btn-sm" value="<?=$cursoRealizado->getCodCurso();?>"><span class="glyphicon glyphicon-trash" aria-hidden="true"></span></button>
</td>
</tr>
<?php
endforeach
?>
</tbody>
</table>
</div>
</body>
<script>
$(document).ready(function(){
$("#btn-cursos").click(function(){
$.post("library/cursos-associados.php",
{
acao: "I",
idAssoc: <?=$result?>,
curso: $("#cursos").val(),
dataCurso: $("#dataCurso").val()
},
function(data){
$("#divretorno").append(data);
});
});
$(".btn-danger").click(function(){
$.post("library/cursos-associados.php",
{
acao: "D",
codCurso: $(this).val()
},
function(data){
$("#divretorno").append(data);
});
});
});
</script>
<?php
include("rodape.php");
?>
</html>