-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwards.php
51 lines (41 loc) · 1.16 KB
/
wards.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
<?php
include("template/header.php");
include "conexionbd.php";
$link=AbrirConexion();
$CadSql="Select nombre_ward,aspecto_visual,dispo_ward,precio_ward
from ward;";
$resultado=EjecutarConsulta($CadSql,$link);
?>
<div class="panel panel-primary">
<div class="panel-heading text-center">
<div class="row">
<div class="col-sm-3 border border-info">Nombre</div>
<div class="col-sm-4 border border-info">Aspecto</div>
<div class="col-sm-3 border border-info">Disponibilidad</div>
<div class="col-sm-1 border border-info">Precio</div>
</div>
</div>
</div>
<?php
while($fila=mysqli_fetch_array($resultado))
{
?>
<div class="panel-heading text-center">
<div class="row" id="lista">
<div class="col-sm-3 border border-ligth">
<?php echo $fila["nombre_ward"]; ?>
</div>
<div class="col-sm-4 border border-ligth">
<?php echo $fila["aspecto_visual"]; ?>
</div>
<div class="col-sm-3 border border-ligth">
<?php echo $fila["dispo_ward"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["precio_ward"]; ?>
</div>
</div>
<?php
}
?>
<?php include("template/footer.php"); ?>