-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusqueda.php
92 lines (76 loc) · 3.56 KB
/
busqueda.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
if (session_status() != PHP_SESSION_ACTIVE) {
session_start();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tienda</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Mukta:300,400,700">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="site-wrap">
<?php include("./layouts/header.php"); ?>
<div class="site-section">
<div class="container">
<div class="row mb-5">
<div class="col-md-9 order-2">
<div class="row">
<div class="col-md-12 mb-5">
<div class="float-md-left mb-4"><h2 class="text-black h5">Productos encontrados</h2></div>
</div>
</div>
<div class="row mb-5">
<?php
include('./php/conexion.php');
$resultado= $conexion->query("SELECT * FROM productos WHERE nombre like '%" . $_REQUEST['busqueda'] . "%'") or die($conexion ->error);
while($fila=mysqli_fetch_array($resultado)){
?>
<div class="col-sm-6 col-lg-4 mb-4" data-aos="fade-up">
<div class="block-4 text-center border">
<figure class="block-4-image">
<a href="shop-single.php?id=<?php echo $fila['id'];?>">
<img src="images/<?php echo $fila['imagen'];?>" alt="<?php echo $fila['nombre'];?>" class="img-fluid"></a>
</figure>
<div class="block-4-text p-4">
<h3><a href="shop-single.php?id=<?php echo $fila['id'];?>"><?php echo $fila['nombre'];?></a></h3>
<p class="mb-0"><?php echo $fila['descripcion'];?></p>
<p class="text-primary font-weight-bold">$<?php echo $fila['precio'];?></p>
</div>
</div>
</div>
<?php } ?>
</div>
<div class="border p-4 rounded mb-4">
<div class="mb-4">
<p class="bg-danger text-white">POR FAVOR LEER</p>
<h3 class="mb-3 h6 text-uppercase text-black d-block">CUALQUIER DETALLE SOLO ESTA DISPONIBLE PARA ENVÍO A LA CIUDAD DE GUAYAQUIL Y SUS ALREDEDORES / Envío 24-48 horas. Cualquier duda comunicarse a nuestro correo: [email protected]</h3>
</div>
<div class="mb-4">
<h3 class="mb-3 h6 text-uppercase text-black d-block">
Si algún artículo no está disponible a corto plazo, será reemplazado por uno equivalente o superior, gracias.</h3>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/main.js"></script>
</body>
</html>