-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
relatorio.php
77 lines (70 loc) · 1.97 KB
/
relatorio.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
<?php
include 'conexao.php'; // Inclui o arquivo de conexão
// Verificar se a conexão foi estabelecida corretamente
if (!$conn) {
die('Conexão não estabelecida.');
}
try {
// Consulta para obter todos os clientes
$sql = "SELECT id, nome, tipo_senha, senha FROM clientes";
$result = $conn->query($sql);
if (!$result) {
throw new Exception("Erro na consulta: " . $conn->error);
}
} catch (Exception $e) {
// Exibir a mensagem de erro diretamente para diagnóstico
die('Erro ao consultar dados: ' . $e->getMessage());
}
// Fechar a conexão
$conn->close();
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<!-- Favicon -->
<link href="/img/att.jpg" rel="icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Painel de Clientes</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>Painel de Clientes</h1>
<?php
if ($result->num_rows > 0) {
// Início da tabela
echo "<table>";
echo "<tr><th>ID</th><th>Nome</th><th>Tipo de Senha</th><th>Senha</th></tr>";
// Saída dos dados de cada linha
while ($row = $result->fetch_assoc()) {
echo "<tr>";
echo "<td>" . htmlspecialchars($row["id"]) . "</td>";
echo "<td>" . htmlspecialchars($row["nome"]) . "</td>";
echo "<td>" . htmlspecialchars($row["tipo_senha"]) . "</td>";
echo "<td>" . htmlspecialchars($row["senha"]) . "</td>";
echo "</tr>";
}
echo "</table>";
} else {
echo "Nenhum cliente encontrado.";
}
?>
</body>
</html>