-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsulta.php
289 lines (214 loc) · 9.11 KB
/
Consulta.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CE MTLS&A Cuonsulta</title>
<link rel= "stylesheet" href = "style/estiloPadrao.css">
<link rel="icon" href="img/favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<header>
<ul><!--Lista de botoes de cabeçalho-->
<li><a href="index.php">Página Inicial</a></li>
<li><a href="inserir.php">Inserir</a></li>
<li><a href="Consulta.php">Consulta</a></li>
<li><a href="Editar.php">Editar</a></li>
<li><a href="excluir.php">Excluir</a></li>
<li><a href="sobre.php">Sobre</a></li>
</ul>
<h1 > Consultar Curricúlo </h1>
</header>
<main>
<div id="containerPainel">
<form method ="POST" action="Consulta.php">
<p>Nome: <input type="text" name="nome"> </p>
<p>Formação: <input type="text" name="forma" > </p>
<p>Experiencia: <input type="text" name="expe" ></p>
<input type="reset" value="Limpar">
<input type="submit" value="Enviar">
</form>
<?php
if(isset($_POST["nome"])){ //toda váriavel em php começa com cifrão, pra entennder que é váriavel, se nome foi preenchido a variavel de méotdo post vai receber o nome
$nome = $_POST["nome"]; // o isset confere se uma váriavel foi definida
}
else{
$nome = null; // se não foi preenchido o dado será nulo
}
if(isset($_POST["forma"])){
$forma = $_POST["forma"];}
else{
$forma = null;
}
if(isset($_POST["cpf"])){
$cpf = $_POST["cpf"];
}
else{
$cpf = null;
}
if(isset($_POST["email"])){
$email = $_POST["email"];
}
else{
$email = null;
}
if(isset($_POST["expe"])){
$expe = $_POST["expe"];
}
else{
$expe = null;
}
if($nome !=null & $expe==null & $forma ==null){
include("conecta.php");
$sql ="SELECT nome, tele, mail, ende, cpf, dnas, forma, expe FROM cadastro WHERE nome LIKE'%$nome%' ";
$result = $conn->query($sql);
if($result->num_rows > 0 ){
echo "<br><br><STRONG>Busca por Nome!!<br><br></STRONG>";
while($row = $result->fetch_assoc()){
echo "Nome: ". $row["nome"].
"<br> Data de Nascimento: ". $row["dnas"].
"<br> Formação: ". $row["forma"].
"<br> Endereço: ". $row["ende"].
"<br> CPF: ". $row["cpf"].
"<br> E-mail: ". $row["mail"].
"<br> Telefone:: ". $row["tele"].
"<br> Experiencia:". $row["expe"].
"<br>-------------------------------------------------------------------------------------------------------------------------<br><br>";
}
}else{
echo "nada encontrado";
}
}//Consulta sómente por nome
if($nome ==null & $expe!=null & $forma ==null){
include("conecta.php");
$sql ="SELECT nome, tele, mail, ende, cpf, dnas, forma, expe FROM cadastro WHERE expe LIKE'%$expe%' ";
$result = $conn->query($sql);
if($result->num_rows > 0 ){
echo "<br><br><STRONG>Busca por Experiência!!<br><br></STRONG>";
while($row = $result->fetch_assoc()){
echo "Nome: ". $row["nome"].
"<br> Data de Nascimento: ". $row["dnas"].
"<br> Formação: ". $row["forma"].
"<br> Endereço: ". $row["ende"].
"<br> CPF: ". $row["cpf"].
"<br> E-mail: ". $row["mail"].
"<br> Telefone:: ". $row["tele"].
"<br> Experiencia:". $row["expe"].
"<br>-------------------------------------------------------------------------------------------------------------------------<br><br>";
}
}else{
echo "nada encontrado";
}
}//Consulta sómente por Experiencia
if($nome ==null & $expe==null & $forma !=null){
include("conecta.php");
$sql ="SELECT nome, tele, mail, ende, cpf, dnas, forma, expe FROM cadastro WHERE forma LIKE'%$forma%' ";
$result = $conn->query($sql);
if($result->num_rows > 0 ){
echo "<br><br><STRONG>Busca por Formação!!<br><br></STRONG>";
while($row = $result->fetch_assoc()){
echo "Nome: ". $row["nome"].
"<br> Data de Nascimento: ". $row["dnas"].
"<br> Formação: ". $row["forma"].
"<br> Endereço: ". $row["ende"].
"<br> CPF: ". $row["cpf"].
"<br> E-mail: ". $row["mail"].
"<br> Telefone:: ". $row["tele"].
"<br> Experiencia:". $row["expe"].
"<br>-------------------------------------------------------------------------------------------------------------------------<br><br>";
}
}else{
echo "<br> Nada encontrado";
}
}//Consulta sómente por formacao
if($nome !=null & $expe!=null & $forma !=null){
include("conecta.php");
$sql ="SELECT nome, tele, mail, ende, cpf, dnas, forma, expe FROM cadastro WHERE forma LIKE'%$forma%' AND nome LIKE'%$nome%' AND expe LIKE'%$expe%'";
$result = $conn->query($sql);
if($result->num_rows > 0 ){
echo "<br><br><STRONG>Busca Completa!!<br><br></STRONG>";
while($row = $result->fetch_assoc()){
echo "Nome: ". $row["nome"].
"<br> Data de Nascimento: ". $row["dnas"].
"<br> Formação: ". $row["forma"].
"<br> Endereço: ". $row["ende"].
"<br> CPF: ". $row["cpf"].
"<br> E-mail: ". $row["mail"].
"<br> Telefone:: ". $row["tele"].
"<br> Experiencia:". $row["expe"].
"<br>-------------------------------------------------------------------------------------------------------------------------<br><br>";
}
}else{
echo "<br> Nada encontrado";
}
}//buca completa
if($nome !=null & $expe!=null & $forma ==null){
include("conecta.php");
$sql ="SELECT nome, tele, mail, ende, cpf, dnas, forma, expe FROM cadastro WHERE nome LIKE'%$nome%' AND expe LIKE'%$expe%'";
$result = $conn->query($sql);
if($result->num_rows > 0 ){
echo "<br><br><STRONG>Busca Nome e Experiencia!!<br><br></STRONG>";
while($row = $result->fetch_assoc()){
echo "Nome: ". $row["nome"].
"<br> Data de Nascimento: ". $row["dnas"].
"<br> Formação: ". $row["forma"].
"<br> Endereço: ". $row["ende"].
"<br> CPF: ". $row["cpf"].
"<br> E-mail: ". $row["mail"].
"<br> Telefone:: ". $row["tele"].
"<br> Experiencia:". $row["expe"].
"<br>-------------------------------------------------------------------------------------------------------------------------<br><br>";
}
}else{
echo "<br> Nada encontrado";
}
}//buca com nome e exp
if($nome !=null & $expe==null & $forma !=null){
include("conecta.php");
$sql ="SELECT nome, tele, mail, ende, cpf, dnas, forma, expe FROM cadastro WHERE forma LIKE'%$forma%' AND nome LIKE'%$nome%' ";
$result = $conn->query($sql);
if($result->num_rows > 0 ){
echo "<br><br><STRONG>Busca com nome e Formação!!<br><br></STRONG>";
while($row = $result->fetch_assoc()){
echo "Nome: ". $row["nome"].
"<br> Data de Nascimento: ". $row["dnas"].
"<br> Formação: ". $row["forma"].
"<br> Endereço: ". $row["ende"].
"<br> CPF: ". $row["cpf"].
"<br> E-mail: ". $row["mail"].
"<br> Telefone:: ". $row["tele"].
"<br> Experiencia:". $row["expe"].
"<br>-------------------------------------------------------------------------------------------------------------------------<br><br>";
}
}else{
echo "<br> Nada encontrado";
}
}//buca com nome e forma
if($nome ==null & $expe!=null & $forma !=null){
include("conecta.php");
$sql ="SELECT nome, tele, mail, ende, cpf, dnas, forma, expe FROM cadastro WHERE forma LIKE'%$forma%' AND expe LIKE'%$expe%'";
$result = $conn->query($sql);
if($result->num_rows > 0 ){
echo "<br><br><STRONG>Busca com Experiencia e Formação!!<br><br></STRONG>";
while($row = $result->fetch_assoc()){
echo "Nome: ". $row["nome"].
"<br> Data de Nascimento: ". $row["dnas"].
"<br> Formação: ". $row["forma"].
"<br> Endereço: ". $row["ende"].
"<br> CPF: ". $row["cpf"].
"<br> E-mail: ". $row["mail"].
"<br> Telefone:: ". $row["tele"].
"<br> Experiencia:". $row["expe"].
"<br>-------------------------------------------------------------------------------------------------------------------------<br><br>";
}
}else{
echo "<br> Nada encontrado";
}
}//busca por form e expe
?>
</div>
</main>
</body>
</html>