-
Notifications
You must be signed in to change notification settings - Fork 0
/
top10.php
44 lines (41 loc) · 1.51 KB
/
top10.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
<div id="elementos">
<table align="center" border="0" cellpadding="0" cellspacing="0">
<thead>
<th colspan="4"><i class="fas fa-star"></i> LO MAS VENDIDO <i class="fas fa-star"></i></th>
</thead>
<?php
function limitar_cadena($cadena, $limite, $sufijo){
if(strlen($cadena) > $limite){
return substr($cadena, 0, $limite) . $sufijo;
}
return $cadena;
}
$cont = 1;
while($datos= $index_top10->fetch_assoc()) {
$cadena_nombre = limitar_cadena($datos['nombre'], 30, '...');
if ($datos['oferta'] == 1 && $_SESSION['loggedin']) {
$precio = "<font title=OFERTA color=#66ff33>".money_format('%.2n', $datos['precio_o'])."!</font>";
} else {
$precio = sprintf('%01.2f', $datos['precio_v']);
}
if($cont % 2 == 0){
topProductos("par",$cont,$datos['nombre'],$cadena_nombre,$precio,$datos['id']);
} else {
topProductos("impar",$cont,$datos['nombre'],$cadena_nombre,$precio,$datos['id']);
}
$cont = $cont + 1;
}
function topProductos ($clase,$cont,$nombre,$cadena_nombre,$precio,$id){
$tabla = "<tr class='$clase'>
<td>#$cont</td>
<td title='$nombre'>$cadena_nombre</td>
<td>$$precio</td>
<td><a class='linkAddProduct' onclick='topProductoAdd($id)' href='#'><i title='Añadir $nombre al carrito' class='fa fa-plus-square fa-lg fa-fw' aria-hidden='true'></i></a></td>
</tr>";
echo $tabla;
}
mysqli_free_result($resultadoProductos);
mysqli_close($conexion);
?>
</table>
</div>