-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
185 lines (165 loc) · 9.3 KB
/
index.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?php include_once 'clases/db_connect.php'; ?>
<?php
/* SESIONES Y VARIABLES GLOBALES DE CONFIGURACION PARA ALMACENAR LOS CRITERIOS DE BUSQUEDA */
$_SESSION['color'];
$_SESSION['tamanio'];
//echo "LA CATEGORIA SELECCIONADA ES: ".$_SESSION['categoria'];
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Catalogo de productos</title>
<link rel="stylesheet" href="assets/css/catalogo.css">
<link rel="stylesheet" href="assets/css/bootstrap.css">
<script src="assets/js/jquery-v1.10.2.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/holder.js"></script>
<script type="text/javascript">
function isNumberKey(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;
}
</script>
</head>
<body>
<div class="contenedor-index">
<div id="carrito-info"> <p>Carrito<a href="cesta.php"><?php include_once 'info-carrito.php'; ?> </a></p>
</div>
<div class="header">
<a href="index.php" class="brand">
<img src="assets/store-logo.jpg">
</a>
<div class="usuario-data">
<p>Bienvenido <a id="usuario" href="<?php echo $_SESSION['url']; ?>">
<?php
session_start();
if (!empty($_SESSION['username'])) {
$nombre = $_SESSION['username'];
$_SESSION['url'] = "profile.php";
echo $nombre;
echo "<a href='logoff.php'>Cerra Sesion</a>";
} else {
$_SESSION['url'] = "logon.php";
echo "<a id='enlace' href='logon.php'>Entrar</a>";
}
?></a></p>
</div>
<div class="buscador-options">
<div class="frm1">
<form id="form1" name="form1" method="POST" action="">
<label for="buscar" class="lbl-buscar"><a href="index.php">Buscar:</a></label>
<input type="text" name="buscar" id="buscar" /></td>
<input type="submit" id="btn-buscar" name="Aceptar" id="Aceptar" value="Buscar" /><br>
<label for="">Precio:</label><a href="index.php?id=alto" class="glyphicon glyphicon-arrow-up">alto</a><a href="index.php?id=bajo" class="glyphicon glyphicon-arrow-down">bajo</a>
<label for="">Color</label>
<select name="color">
<option value="">Seleccione</option>
<?php include_once 'clases/listas/colores.php'; ?>
</select>
<label for="">Tamanio</label>
<select name="size">
<option value="">Seleccione:</option>
<?php include_once 'clases/listas/tallas.php'; ?>
</select>
</form>
</div>
</div>
</div>
<div class="categorias">
<?php include_once 'li-categoria.php'; ?>
</div>
<?php
/* CONSULTA QUE BUSCA POR LOS CRITERIOS ESPECIFICADOS POR EL USUARIO */
$consulta = mysql_query("select * from producto where activo_p='S' and existencia_p>0 order by nombre_p ASC");
if (isset($_POST['color'])) {
$consulta = mysql_query("select * from producto where activo_p = 'S' and color_p like '%" . $_POST['color'] . "%'");
}
if (isset($_POST['buscar'])) {
$size = $_POST['size'];
$color = $_POST['color'];
$sub_query;
$sub_query2;
if ($size != "") {
$sub_query = 'and like %' . $size . '%';
} else {
$sub_query = '';
}
if ($color != "") {
$sub_query2 = 'and ' . $color;
} else {
$sub_query2 = '';
}
$rango_inicio = '0';
$rango_fin = $_POST['buscar'];
//$consulta = mysql_query("select * from producto where activo_p = 'S' and (nombre_p like '%" . $_POST['buscar'] . "%' ) or (precio_p between '0' and '" . $_POST['buscar'] . "') or (categoria_p like '%" . $_POST['buscar'] . "%') or (marca_p like '%" . $_POST['buscar'] . "%')");
$consulta = mysql_query("select * from producto where activo_p = 'S' and ((nombre_p like '%" . $_POST['buscar'] . "%' ) $sub_query) or (precio_p between '0' and '" . $_POST['buscar'] . "') or (categoria_p like '%" . $_POST['buscar'] . "%') or (marca_p like '%" . $_POST['buscar'] . "%')");
}
/* CONSULTA QUE FILTRA LAS BUSQUEDAS POR CATEGORIAS, RECIBE LOS PARAMETROS DEL
* MENU SUPERIOR CON LA LISTA DE CATEGORIAS */
if (isset($_GET['id'])) {
$id = $_GET['id'];
$consulta = mysql_query("select * from producto where activo_p = 'S' and categoria_p like '%" . $id . "%'");
if ($id == "bajo") {
$_SESSION['filtro'] = "bajo";
$consulta = mysql_query("select * from producto where activo_p = 'S' order by precio_p asc");
} elseif ($id == "alto") {
// $_SESSION['filtro'] = "Filtro establecido";
$_SESSION['filtro'] = "alto";
$consulta = mysql_query("select * from producto where activo_p = 'S' order by precio_p desc");
}
}
if ((mysql_num_rows($consulta)) === 0) {
echo "<h1>Producto no encontrado!:' ( </h1>";
echo "<h2><a href = 'index.php'>Regresar</a></h2>";
} else {
while ($filas = mysql_fetch_array($consulta)) {
$id = $filas['id_p'];
$imagen = $filas['imagen_p'];
$nombre = $filas['nombre_p'];
$desc = $filas['descripcion_p'];
$marca = $filas['marca_p'];
$talla = $filas['tamanio_p'];
$precio = $filas['precio_p'];
$existencia = $filas['existencia_p'];
$fecha = $filas['fecha_p'];
?>
<div id="productsWrapper">
<ul id="products" data-role="listview" data-inset="true">
<li class="product">
<img class="hide-from-desktop" src="<?php echo $imagen; ?>" alt="Imagen de <?php echo $nombre ?>" />
<div class="productInfo">
<img class="product-image hide-from-mobile" src="<?php echo $imagen; ?>" alt="Imagen de <?php echo $nombre ?>" />
<h3><?php echo $nombre ?></h3>
<p class="description"><span class="bolder-title"></span><?php echo $desc ?></p>
<p class="description"><span class="bolder-title">Marca:</span><?php echo $marca ?></p>
<p class="description"><span class="bolder-title">Tamanio:</span><?php echo $talla ?></p>
<p class="description"><span class="bolder-title">Disponibles:</span><?php echo $existencia ?></p>
<p class="price hide-from-desktop"><?php echo $precio ?></p>
</div>
<!-- Desktop only -->
<div class="action hide-from-mobile">
<p class="price"><?php echo "$" . $precio ?>
<form action="addCarrito.php" class="frmCarrito" method="post" name="compra">
<input name="id_txt" type="hidden" value="<?php echo $id ?>" />
<input name="nombre" type="hidden" value="<?php echo $nombre ?>" />
<input name="precio" type="hidden" value="<?php echo $precio ?>" /><br><br>
<label for="cantidad" class="control-label">Cantidad</label>
<input name="cantidad" type="number" value="1" min="1" max="<?php echo $existencia ?>" required onkeypress="return isNumberKey(this)"/>
<input class="order-button" name="Comprar" type="submit" value="Agregar al carrito" />
</form>
</p>
</div>
</li>
</ul>
</div>
<?php
}
}
?>
</div>
</body>
</html>