-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofessor.php
More file actions
124 lines (115 loc) · 2.85 KB
/
professor.php
File metadata and controls
124 lines (115 loc) · 2.85 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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sem título</title>
</head>
<body>
<?
include "usuarios.class.php";
include "professor.class.php";
$prof=new Professor;
if(isset($_GET["prof"])){
$prof->setId($_GET["prof"]);
$prof->getProf();
}
if($_GET["action"]=="gravar"){
$prof=new Professor;
if($_POST["id"]>0){
$prof->setId($_POST["id"]);
}
$prof->setNome($_POST["nome"]);
$prof->setSobreNome($_POST["sobrenome"]);
$prof->setRs($_POST["rs"]);
$prof->setCategoria($_POST["categoria"]);
$prof->setEscola($_POST["escola"]);
$prof->setTurma($_POST["turma"]);
$prof->setTurno($_POST["turno"]);
$prof->setTelefone($_POST["telefone"]);
$prof->setEmail($_POST["email"]);
$prof->setUsuario($_POST["usuarios"]);
$prof->setStatus(1);
if($prof->salvar()){
echo "Sucesso!";
}
}
$user=new Usuario;
?>
<form action="?action=gravar" method="post">
<input type="hidden" name="id" value="<? echo $prof->getId(); ?>" />
<table>
<tr>
<td colspan="3">Criar Professor</td>
</tr>
<tr>
<td>Nome:</td>
<td width="15"></td>
<td>Sobrenome:</td>
</tr>
<tr>
<td><input type="text" name="nome" value="<? echo $prof->getNome(); ?>" /></td>
<td></td>
<td><input type="text" name="sobrenome" value="<? echo $prof->getSobreNome(); ?>" /></td>
</tr>
<tr height="5">
<td colspan="3"></td>
</tr>
<tr>
<td>Rs:</td>
<td width="15"></td>
<td>Categoria:</td>
</tr>
<tr>
<td><input type="text" name="rs" value="<? echo $prof->getRs(); ?>" /></td>
<td></td>
<td><input type="text" name="categoria" value="<? echo $prof->getCategoria(); ?>" /></td>
</tr>
<tr height="5">
<td colspan="3"></td>
</tr>
<tr>
<td>Escola:</td>
<td width="15"></td>
<td>Turma:</td>
</tr>
<tr>
<td><input type="text" name="escola" value="<? echo $prof->getEscola(); ?>" /></td>
<td></td>
<td><input type="text" name="turma" value="<? echo $prof->getTurma(); ?>" /></td>
</tr>
<tr height="5">
<td colspan="3"></td>
</tr>
<tr>
<td>Turno:</td>
<td width="15"></td>
<td>Telefone:</td>
</tr>
<tr>
<td><input type="text" name="turno" value="<? echo $prof->getTurno(); ?>" /></td>
<td></td>
<td><input type="text" name="telefone" value="<? echo $prof->getTelefone(); ?>" /></td>
</tr>
<tr height="5">
<td colspan="3"></td>
</tr>
<tr>
<td>Email:</td>
<td width="15"></td>
<td>Usuario:</td>
</tr>
<tr>
<td><input type="text" name="email" value="<? echo $prof->getEmail(); ?>" /></td>
<td></td>
<td><? echo $user->getSelectUser($prof->getUsuario(),"3",false); ?></td>
</tr>
<tr height="5">
<td colspan="3"></td>
</tr>
<tr>
<td colspan="3"><input type="submit" value="Cadastrar" /></td>
</tr>
</table>
</form>
</body>
</html>