-
Notifications
You must be signed in to change notification settings - Fork 7
/
consultas.php
47 lines (25 loc) · 827 Bytes
/
consultas.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
<?php include_once 'includes/header.inc.php' ?>
<?php include_once 'includes/menu.inc.php' ?>
<div class="row container">
<div class="col s12">
<h5 class="light">Consultas</h5><hr>
<form action="busca.php" method="GET">
<input type="text" name="pesquisa" size="50" placeholder="Nome cliente" autofocus>
</form>
<table class="striped">
<thead>
<tr>
<th>Nome</th>
<th>Email</th>
<th>Telefone</th>
</tr>
</thead>
<tbody>
<?php
include_once 'BD/read.php';
?>
</tbody>
</table>
</div>
</div>
<?php include_once 'includes/footer.inc.php' ?>