-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbusca.php
61 lines (61 loc) · 2.19 KB
/
busca.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
<html>
<?php include 'head.php';?>
<body>
<div class="container">
<?php
session_start();
ini_set('odbc.defaultlrl',9000000);
include 'funcoes.php';
include 'menu.php';
if (isset($_SESSION['usuario'])) { ?>
<div class="div-center">
<h1>Busca de Produtos</h1>
<form action="busca.php" method="POST" class="formulario">
<p><label for="nomeProdutoBusca">Nome:</label>
<input type="text" name="nomeProdutoBusca" required/></p>
<input type="submit" value="Enviar" class="btn-forms" id="submit">
<input type="reset" value="Limpar dados" class="btn-forms" id="submit">
</form>
<?php
if (isset($_POST['nomeProdutoBusca'])){
$pesquisa = $_POST['nomeProdutoBusca'];
$consulta = odbc_exec($connect,"SELECT idProduto, nomeProduto, descProduto, precProduto, qtdMinEstoque, imagem, nomeCategoria FROM Produto inner join Categoria on (produto.idCategoria = categoria.idCategoria) WHERE nomeProduto LIKE '%".$pesquisa."%'");
?>
<table class="tabela">
<thead>
<tr>
<th>Nome</th>
<th>Imagem</th>
<th>Preço</th>
<th>Categoria</th>
<th>Estoque</th>
</tr>
</thead>
<tbody>
<?php
while ($resultado = odbc_fetch_array($consulta)) {
if ($resultado['imagem'] <> NULL) {
$imagemDoProduto = "<img src='data:image/jpeg;base64,".base64_encode($resultado['imagem'])."' width='30' heigth='30' />";
} else {
$imagemDoProduto = "<img src='css/img/logo_lotus_padrao.png' width='30' heigth='30' />";
}
echo "
<tr>
<td>".utf8_encode($resultado['nomeProduto'])."</td>
<td>".$imagemDoProduto."</td>
<td>R$".number_format($resultado['precProduto'], 2, ',','.')."</td>
<td>".$resultado['nomeCategoria']."</td>
<td>".$resultado['qtdMinEstoque']."</td>
</tr>";
}
?>
</tbody>
</table>
<?php } ?>
</div>
<?php } else {
header("location:index.php");
} ?>
</div>
</body>
</html>