-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcategorias.php
43 lines (41 loc) · 1.46 KB
/
categorias.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
<?php require_once 'classes/Categoria.php'; ?>
<?php
$categoria = new Categoria();
$lista = $categoria->listar();
?>
<?php require_once 'cabecalho.php' ?>
<div class="row">
<div class="col-md-12">
<h2>Categorias</h2>
</div>
</div>
<div class="row">
<div class="col-md-4">
<a href="categorias-criar.php" class="btn btn-info btn-block">Crair Nova Categoria</a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Nome</th>
<th class="acao">Editar</th>
<th class="acao">Excluir</th>
</tr>
</thead>
<tbody>
<?php foreach ($lista as $linha): ?>
<tr>
<td><a href="/categorias-detalhe.php" class="btn btn-link"><?php echo $linha['id'] ?></a></td>
<td><a href="/categorias-detalhe.php" class="btn btn-link"><?php echo $linha['nome'] ?></a></td>
<td><a href="/categorias-editar.php?id=<?php echo $linha['id'] ?>" class="btn btn-info">Editar</a></td>
<td><a href="/categorias-excluir-post.php?id=<?php echo $linha['id'] ?>" class="btn btn-danger">Excluir</a></td>
</tr>
<?php endforeach ?>
</tbody>
</table>
</div>
</div>
<?php require_once 'rodape.php' ?>