-
Notifications
You must be signed in to change notification settings - Fork 0
/
agregarPromocion.php
77 lines (71 loc) · 3.16 KB
/
agregarPromocion.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
<?php include 'template/header.php' ?>
<?php
include_once "model/conexion.php";
$codigo = $_GET['codigo'];
$sentencia = $bd->prepare("select * from persona where id = ?;");
$sentencia->execute([$codigo]);
$persona = $sentencia->fetch(PDO::FETCH_OBJ);
$sentencia_promocion = $bd->prepare("select * from promociones where id_persona = ?;");
$sentencia_promocion->execute([$codigo]);
$promocion = $sentencia_promocion->fetchAll(PDO::FETCH_OBJ);
//print_r($persona);
?>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-4">
<div class="card">
<div class="card-header">
Ingresar datos para Promocion : <br><?php echo $persona->nombres.' '.$persona->apellido_paterno.' '.$persona->apellido_materno; ?>
</div>
<form class="p-4" method="POST" action="registrarPromocion.php">
<div class="mb-3">
<label class="form-label">Promocion: </label>
<input type="text" class="form-control" name="txtPromocion" autofocus required>
</div>
<div class="mb-3">
<label class="form-label">Duración de la Promocion: </label>
<input type="text" class="form-control" name="txtDuracion" autofocus required>
</div>
<div class="d-grid">
<input type="hidden" name="codigo" value="<?php echo $persona->id; ?>"><P></P>
<input type="submit" class="btn btn-primary" value="Registrar">
</div>
</form>
</div>
</div>
<div class="col-8">
<div class="card">
<div class="card-header">
Lista de Promociones
</div>
<div class="col-12">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Promocion</th>
<th scope="col">Duracion</th>
<th scope="col" colspan="3">Opciones</th>
</tr>
</thead>
<tbody>
<?php
foreach ($promocion as $dato) {
?>
<tr>
<td scope="row"><?php echo $dato->id; ?></td>
<td><?php echo $dato->promocion; ?></td>
<td><?php echo $dato->duracion; ?></td>
<td><a class="text-primary" href="enviarMensaje.php?codigo=<?php echo $dato->id; ?>"><i class="bi bi-cursor"></i></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php include 'template/footer.php' ?>