-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpesquisa_res.php
228 lines (147 loc) · 6.22 KB
/
pesquisa_res.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
include("includes/body.php");
top();
logged();
if(isset($_SESSION['user_id']) && $_SESSION['user_id'] != "admin")
{ c_compras();
}
else{
login();}
menu();
pesquisa();
//paginacao
$produtos_pagina=9;
$pagina = $_GET['p'];
if (!$pagina) {
$pagina = 1;
}
$primeiro = ($pagina*$produtos_pagina) - $produtos_pagina;
if(isset($_POST['form_pesquisa']))
{
$search_nome=strtolower($_POST['produto_nome']);
$search_band=strtolower($_POST['banda_nome']);
if($search_nome != "nome do produto" && $search_nome != "" && $search_band == "")
{
$res=mysql_query("select * from produtos inner join bandas on produto_banda_id=banda_id where produto_nome like '%$search_nome%' limit $primeiro, $produtos_pagina") or die (mysql_error());
$num=mysql_affected_rows();
}
elseif(($search_nome == "" || $search_nome == "nome do produto") && $search_band != "")
{
$res=mysql_query("select * from produtos inner join bandas on produto_banda_id=banda_id where banda_nome like '%$search_band%' limit $primeiro, $produtos_pagina") or die (mysql_error());
$num=mysql_affected_rows();
}
elseif($search_nome != "" && $search_nome != "nome do produto" && $search_band != "")
{
$res=mysql_query("select * from produtos inner join bandas on produto_banda_id=banda_id where produto_nome like '%$search_nome%' and banda_nome like '%$search_band%' limit $primeiro, $produtos_pagina") or die (mysql_error());
$num=mysql_affected_rows();
}else
{
$res=mysql_query("select * from produtos limit $primeiro, $produtos_pagina") or die (mysql_error());
$num=mysql_affected_rows();
}
$i=1;
?>
<div style="position:absolute; left: 368px; top: 343px; width: 502px; height: 228px;">
<div><img src="imagens/pes.jpg" border="0" /></div><div> </div>
<table align="center" style="border-collapse:collapse; border-color:#333;">
<tr><?php
if($num > 0)
{
while($row=mysql_fetch_array($res)){
if ($i <= 3)
{
?>
<td align="center"><form method="post" action="adiciona_carrinho.php" >
<div><a href="ficha_produto.php?id=<?php echo $row['produto_id'];?>"><img src="imagens/produtos/mini/<?php echo $row['produto_foto'];?>" /></a></div>
<input type="hidden" name="id" value="<?php echo $row['produto_id'];?>" />
<div><a href="ficha_produto.php?id=<?php echo $row['produto_id'];?>"><?php echo $row['produto_nome'];?></a></div>
<div><b><font style="font-size:15px;"> <?php echo $row['produto_preco'];?> €</font></b></div>
<div><select name="tamanho" class="botaotbl" >
<option value="none">Tamanho</option>
<?php
$sql=mysql_query("select * from tamanhos");
$num=mysql_affected_rows();
for ($conta=0;$conta<$num;$conta++)
{
?><option value="<?php echo mysql_result($sql,$conta,"tamanho_id");?>"><?php echo mysql_result($sql,$conta,"tamanho_nome");?></option>
<?php } ?>
</select>
<select name="qtd" style="width:100px; font-family:Calibri;">
<option value="none">Quantidade</option>
<option>1</option><option>2</option><option>3</option><option>4</option><option>5</option><option>6</option>
</select>
<input class="botaotbl" type="submit" value="Comprar" name="carrinho_go" /> </form></div>
</td>
<?php }
else{
?>
</tr><tr><td align="center"><form method="post" action="adiciona_carrinho.php" >
<div><a href="ficha_produto.php?id=<?php echo $row['produto_id'];?>"><img src="imagens/produtos/mini/<?php echo $row['produto_foto'];?>" width="110" height="110"/></a></div>
<input type="hidden" name="id" value="<?php echo $row['produto_id'];?>" />
<div><a href="ficha_produto.php?id=<?php echo $row['produto_id'];?>"><?php echo $row['produto_nome'];?></a></div>
<div><b><font face="Calibri" style="font-size:15px;"> <?php echo $row['produto_preco'];?> €</font></b></div>
<div><select name="tamanho" style="font-family:Calibri; width:90px; ">
<option value="none">Tamanho</option>
<?php
$sql=mysql_query("select * from tamanhos");
$num=mysql_affected_rows();
for ($conta=0;$conta<$num;$conta++)
{
?><option><?php echo mysql_result($sql,$conta,"tamanho_nome");?></option>
<?php } ?>
</select>
<select name="qtd" style="width:100px; font-family:Calibri;">
<option value="none">Quantidade</option>
<option>1</option><option>2</option><option>3</option><option>4</option><option>5</option><option>6</option>
</select>
<input type="submit" class="botaotbl" value="Comprar" name="carrinho_go" /></form></div>
</td>
<?php
$i=1;}
$i++;
}
}else
echo "<tr><td>Nenhum produto encontrado</td>";
?>
</tr></table>
<?php
$tot=mysql_query("select count(*) from produtos") or die (mysql_error());
list($total_p) = mysql_fetch_array($tot);
$total_pag = $total_p/$produtos_pagina;
$prev = $pagina - 1;
$next = $pagina + 1;
//anterior
if ($pagina > 1) {
$prev_l = "<a href=\"$_SERVER[PHP_SELF]?p=$prev\">Anterior</a>";
} else {
$prev_l = "Anterior";
}
//seguinte
if ($total_pag > $pagina) {
$next_l = "<a href=\"$_SERVER[PHP_SELF]?p=$next\">Seguinte</a>";
} else {
$next_l = "Seguinte";
}
$total_pag = ceil($total_pag);
$painel = "";
for ($x=1; $x<=$total_pag; $x++) {
if ($x==$pagina) {
$painel .= " [$x] ";
} else {
$painel .= " <a href=\"$_SERVER[PHP_SELF]?p=$x\">[$x]</a>";
}
}
echo "<div> </div><div> </div><div align='center'>$prev_l | $painel | $next_l</div>";
?>
</div>
<?php
}
else
header("location:index.php?erro=9");
?>
<div align="center" id="foot"><div id="txtfoot">
Copyright © 2010 Todos os direitos reservados. Gonçalo Cardeira.</div>
</div>
</div>
</body>
</html>