-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_result.php
43 lines (40 loc) · 976 Bytes
/
search_result.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('header.html');
require('class_products.php');
$palavra_chave = $_GET["produto"];
if ($palavra_chave != "" and trim($palavra_chave) != "") {
$produto = new produtos();
$resultado = $produto->listar_produtos($palavra_chave);
?>
<div class="row grad-bgnd">
<div id="div-table-search">
<table>
<thead>
<th>Type</th>
<th>Name/Brand</th>
<th>Rate</th>
<th>Comments</th>
</thead>
<tbody>
<?php
if ($resultado != []) {
foreach ($resultado as $row) {
echo "<tr>";
foreach ($row as $column) {
echo "<td>$column</td>";
}
echo "</tr>";
}
}
else {
echo "<tr><td colspan='4'>No results found</td></tr>";
}
?>
</tbody>
</table>
</div>
</div>
<?php
}
require('footer.html');
?>