-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonstruos.php
62 lines (57 loc) · 1.82 KB
/
monstruos.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
<?php
include("template/header.php");
include "conexionbd.php";
$link=AbrirConexion();
$CadSql="Select nombre_monstruo,des_monstruo,botin,experiencia,bonificacion,reaparicion,ubicacion,mapa
from monstruo;";
$resultado=EjecutarConsulta($CadSql,$link);
?>
<div class="panel panel-primary">
<div class="panel-heading text-center">
<div class="row">
<div class="col-sm-1 border border-info">Nombre</div>
<div class="col-sm-1 border border-info">Descripcion</div>
<div class="col-sm-1 border border-info">Botin</div>
<div class="col-sm-1 border border-info">Experiencia</div>
<div class="col-sm-1 border border-info">Bonificacion</div>
<div class="col-sm-1 border border-info">Reaparicion</div>
<div class="col-sm-1 border border-info">Ubicacion</div>
<div class="col-sm-1 border border-info">Mapa</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-1 border border-ligth">
<?php echo $fila["nombre_monstruo"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["des_monstruo"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["botin"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["experiencia"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["bonificacion"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["reaparicion"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["ubicacion"]; ?>
</div>
<div class="col-sm-1 border border-ligth">
<?php echo $fila["mapa"]; ?>
</div>
<?php
}
?>
</div>
<?php include("template/footer.php"); ?>