-
Notifications
You must be signed in to change notification settings - Fork 0
/
3-dormitorio.php
74 lines (60 loc) · 2.21 KB
/
3-dormitorio.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
<?php
session_start();
include_once 'admin/php/conexion.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>Ofertas de Fábrica - Viviendas de 3 Dormitorios</title>
<?php include_once 'php/linksHead.php';?>
<link href="<?php echo $raiz;?>css/ofertas.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php include_once 'php/header.php';?>
<div class="container-fluid">
<div class="row">
<h1>Viviendas de 3 dormitorios</h1>
</div>
<?php
$strSalida = "";
$strSQL = "SELECT t.NumeTipo, t.NombTipo, t.Imagen,";
$strSQL.= " f.NombFabr, f.Logo, f.Dominio, t.Precio";
$strSQL.= " FROM tipologias t";
$strSQL.= " INNER JOIN fabricas f ON t.NumeFabr = f.NumeFabr";
$strSQL.= " WHERE t.CantHabi = 3";
$strSQL.= " AND f.Estado = 1";
$strSQL.= " ORDER BY f.NumeFabr, t.NombTipo";
$tipologias = cargarTabla($strSQL);
$I = 1;
$strSalida.= '<div class="row divTipologias">';
while ($fila = $tipologias->fetch_array()) {
if ($I == 4) {
$strSalida.= $crlf.'</div>';
$strSalida.= '<div class="row divTipologias">';
$I = 1;
}
$strSalida.= $crlf.'<div class="col-md-4 marginTop40 txtCenter">';
$strSalida.= $crlf.'<div class="text-left">';
$strSalida.= $crlf.'<a href="fabrica/'. $fila["Dominio"] .'/" title="'. $fila["NombFabr"] .'">';
$strSalida.= '<img src="admin/'. $fila["Logo"] . '" style="width: auto; height: 100px" />';
$strSalida.= $crlf.'</a>';
$strSalida.= $crlf.'</div>';
$strSalida.= $crlf.'<div class="imgTipologia clickable" data-url="fabrica/'. $fila["Dominio"] . "/" . str_replace(" ", "-", $fila["NombTipo"]) .'/" style="background: url(\'admin/'. $fila["Imagen"] . '\') center center/cover no-repeat;"></div>';
$strSalida.= $crlf.'<br><br>';
$strSalida.= $crlf.'<div class="cuadroNegro">';
$strSalida.= $fila["NombTipo"];
$strSalida.= '<br><span class="txtBold rojo">$ '. $fila["Precio"] . '</span>';
$strSalida.= '</div>';
$strSalida.= $crlf.'</div>';
$I++;
}
$strSalida.= $crlf.'</div>';
echo $strSalida;
if (isset($tipologias))
$tipologias->free();
?>
</div>
<div class="clearer marginTop40"></div>
<?php include_once 'php/footer.php';?>
</body>
</html>