-
Notifications
You must be signed in to change notification settings - Fork 0
/
consulta.php
79 lines (73 loc) · 2.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
<?php
include "testa_banco.php";
?>
<!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>Consulta de dados</title>
</head>
<body>
<h1> Consultas</h1>
<br>
<?php
error_reporting(E_ERROR | E_PARSE);
$res = mysqli_query($_con, "SELECT * FROM tb_usuario");
while ($dados = mysqli_fetch_assoc($res)) {
$id = $dados['id'];
$nome = htmlspecialchars($dados['nome']);
$cidade = htmlspecialchars($dados['cidade']);
$telefone = htmlspecialchars($dados['telefone']);
$data_nasc = htmlspecialchars($dados['data_nascimento']);
$genero = $dados['genero'] == 'F' ? "Feminino" : ($dados['genero'] == 'M' ? 'Masculino' : 'Prefiro não informar');
$obs = htmlspecialchars($dados['observacao']);
$interesses = htmlspecialchars($dados[6]);
$int1 = false;
$int2 = false;
$int3 = false;
$int4 = false;
$int5 = false;
for ($i = 0; $i < strlen($interesses); $i += 3) {
$sub = substr($interesses, $i, 3);
if ($sub == "ESP") {
$int1 = Esportes;
} else if ($sub == "JOG") {
$int2 = true;
} else if ($sub == "FIL") {
$int3 = true;
} else if ($sub == "GAS") {
$int4 = true;
} else if ($sub == "TEC") {
$int5 = true;
}
}
echo "<h2>Dados do $nome</h2>";
echo "<br><p id=\"semMargem\">Identificador: $id
<br>Telefone: $telefone
<br>Data de nascimento: $data_nasc
<br>Cidade: $cidade
<br>Genero: $genero
<br>Interesses:<ul>";
if ($int1) {
echo "<li>Esportes</li>";
}
if ($int2) {
echo "<li>Jogos</li>";
}
if ($int3) {
echo "<li>Filmes</li>";
}
if ($int4) {
echo "<li>Gastronomia</li>";
}
if ($int5) {
echo "<li>Tecnologia</li>";
}
echo "</ul><br>Observação: $obs<hr>";
}
mysqli_close($_con);
?>
</body>
</html>