-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistar-reserva.php
49 lines (44 loc) · 1.88 KB
/
listar-reserva.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
<h1>Lista de Reservas</h1>
<?php
// Consulta SQL para obter a lista de reservas, juntamente com informações do cliente, quarto e categoria
$sql = "SELECT c.nome AS nome,
q.descricao AS descricao,
DATE_FORMAT(r.dt_inicial, '%d/%m/%Y') AS dt_inicial,
DATE_FORMAT(r.dt_final, '%d/%m/%Y') AS dt_final,
cat.valor
FROM reserva AS r
INNER JOIN cliente AS c ON c.id_cliente=r.idcliente
INNER JOIN quarto AS q ON q.id_quarto=r.idquarto
INNER JOIN categoria AS cat ON cat.id_categoria=q.idcategoria";
$res = $conn->query($sql);
$qtd = $res->num_rows;
// Verifica se a consulta retornou resultados
if ($qtd > 0) {
// Início da tabela
print "<table class='table table-hover'>";
print "<tr>";
print "<th>Cliente:</th>";
print "<th>Quarto:</th>";
print "<th>Entrada:</th>";
print "<th>Saída:</th>";
print "<th>Ações</th>";
print "</tr>";
// Itera sobre os resultados e exibe na tabela
while ($row = $res->fetch_object()) {
print "<tr>";
print "<td>" . $row->nome . "</td>";
print "<td>" . $row->descricao . "</td>";
print "<td>" . $row->dt_inicial . "</td>";
print "<td>" . $row->dt_final . "</td>";
print "<td>
<button onclick=\"location.href='?page=editar_reserva&id=" . $row->descricao . "'\" class='btn btn-success'>Editar</button>
<button onclick=\"if(confirm('Tem certeza que deseja excluir?')){location.href='?page=editar_reserva&acao=excluir&id=" . $row->descricao . "'}else{false;}\" class='btn btn-danger'>Excluir</button>
</td>";
print "</tr>";
}
print "</table>";
} else {
// Mensagem exibida caso não haja resultados
print "<p class='alert alert-danger'>Sem resultados!</p>";
}
?>