-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlivro-listar.php
67 lines (58 loc) · 2.24 KB
/
livro-listar.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
<h1 class='m-3'> Lista de Livros </h1>
<table class="table m-3 table-hover">
<tr>
<th> # </th>
<th> Categoria </th>
<th> Titulo </th>
<th> Autor </th>
<th> Editora </th>
<th> Edição </th>
<th> Localidade </th>
<th> Ano </th>
<th> Ações </th>
</tr>
<?php
$response = $conn->query("SELECT * FROM `livro`");
$qtd = $response->num_rows;
if($qtd == 0){
echo "<p class='m-4'><b>Não existem registros!</b></p>";
} else {
echo "<p class='m-4'>Encoutrou <b>$qtd</b> resultados.";
}
while($row = $response->fetch_object()){
$categoria_id_categoria = $row->categoria_id_categoria;
$categoria = $conn->query(
"SELECT nome_categoria FROM categoria WHERE id_categoria = $categoria_id_categoria "
)->fetch_object()->nome_categoria;
echo "<tr>";
echo "<td> $row->id_livro</td>";
echo "<td> $categoria</td>";
echo "<td> $row->titulo_livro</td>";
echo "<td> $row->autor_livro</td>";
echo "<td> $row->editora_livro</td>";
echo "<td> $row->edicao_livro</td>";
echo "<td> $row->localidade_livro</td>";
echo "<td> $row->ano_livro</td>";
echo "<td>
<button class='btn btn-success'
onclick=\"location.href='?page=livro-editar&id=$row->id_livro'\">
Editar
</button>
<button class='btn btn-danger'
onclick=
\"
let resposta = confirm('Tem certeza que deseja Remover ?');
if (resposta)
{
location.href = '?page=livro-salvar&acao=remover&id=$row->id_livro';
}
else{false;}
\"
>
Remover
</button>
</td>";
echo "</tr>";
}
?>
</table>