-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbusqueda.php
97 lines (92 loc) · 3.45 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
93
94
95
96
97
<?php
function conexion(){
$conn = mysql_connect("localhost","root" ,"");
return $conn;
}
function mostrarProducto($conn,$resultado){
$num=0;
while ($fila = mysql_fetch_array($resultado, MYSQL_NUM)) {
$num=$num+1;
echo "<li style=\"height:260px\">";
echo "<div class=\"image\">";
$query2 = "SELECT imagen FROM imagen WHERE id_anuncio=$fila[0];";
$resultado2 = mysql_query($query2, $conn);;
if($fila2 = mysql_fetch_array($resultado2, MYSQL_NUM)){
echo "<a href=\"#\"><img style=\"width:190px;height:155px\" src=\"uploads/$fila2[0]\" alt=\"\" /></a>";
}else{
echo "<a href=\"#\">Imagen no disponible</a>";
}
echo "</div>";
echo "<p>";
echo "<br />";
echo "Nombre: <span>",$fila[1],"</span><br />";
echo "Descripcion: <a href=\"#\">",$fila[2],"</a>";
echo "</p>";
echo "<p class=\"price\">Precio: <strong>Q",$fila[3],"</strong></p>";
echo "</li>";
}
echo "</ul><div class=\"cl\"> </div></div></div>";
return $num;
}
function historialBusqueda($usuario,$busqueda,$conn){
$fecha=date("Y-m-d H:i:s", time());
$query = "INSERT INTO busquedas VALUES (NULL,$usuario,'$busqueda','$fecha')";
return mysql_query($query, $conn);
}
$conn = mysql_connect("localhost","root" ,"");
mysql_select_db("catalogo", $conn);
if($_POST){
if($_POST['tipo']==1){
$busqueda=$_POST['buscar'];
historialBusqueda(1,$busqueda,$conn);
$query = "SELECT * FROM anuncio WHERE producto like '%$busqueda%' or descripccion like '%$busqueda%' ORDER BY prioridad desc;";
$resultado = mysql_query($query, $conn);
mostrarProducto($conn,$resultado);
mysql_free_result($resultado);
}
if($_POST['tipo']==2){
$busqueda=$_POST['categoria'];
historialBusqueda(1,$busqueda,$conn);
$query = "SELECT * FROM anuncio WHERE categoria='$busqueda' ORDER BY prioridad desc;";
$resultado = mysql_query($query, $conn);
mostrarProducto($conn,$resultado);
mysql_free_result($resultado);
}
if($_POST['tipo']==3){
$pagina=$_POST['pagina'];
$l1=($pagina-1)*8;
$query = "SELECT * FROM anuncio ORDER BY prioridad desc LIMIT $l1,8;";
$resultado = mysql_query($query, $conn);
$num=mostrarProducto($conn,$resultado);
mysql_free_result($resultado);
if($pagina>1){
$v=$pagina-1;
echo "<form action=\"index.php\" method=\"POST\">";
echo "<input type=\"hidden\" name=\"tipo\" value=\"3\" />";
echo "<input type=\"hidden\" name=\"pagina\" value=\"$v\" />";
echo "<p><input type=\"submit\" value=\"<< Anterior\" style=\"width:100px;height:25px;background:WhiteSmoke;border:0;color:BLACK\" /></p>";
echo "</form>";
}
if($num==8){
$v=$pagina+1;
echo "<form action=\"index.php\" method=\"POST\">";
echo "<input type=\"hidden\" name=\"tipo\" value=\"3\" />";
echo "<input type=\"hidden\" name=\"pagina\" value=\"$v\" />";
echo "<p><input type=\"submit\" value=\"Siguiente >>\" style=\"width:100px;height:25px;background:WhiteSmoke;border:0;color:BLACK\" /></p>";
echo "</form>";
}
}
}else{
$query = "SELECT * FROM anuncio ORDER BY prioridad desc LIMIT 0,8;";
$resultado = mysql_query($query, $conn);
$num=mostrarProducto($conn,$resultado);
mysql_free_result($resultado);
if($num==8){
echo "<form action=\"index.php\" method=\"POST\">";
echo "<input type=\"hidden\" name=\"tipo\" value=\"3\" />";
echo "<input type=\"hidden\" name=\"pagina\" value=\"2\" />";
echo "<p><input type=\"submit\" value=\"Siguiente >>\" style=\"width:100px;height:25px;background:WhiteSmoke;border:0;color:BLACK\" /></p>";
echo "</form>";
}
}
?>