-
Notifications
You must be signed in to change notification settings - Fork 2
/
form-recibidos.inc.php
executable file
·49 lines (49 loc) · 1.31 KB
/
form-recibidos.inc.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
<?php
$meses = array(
'1'=>'Enero',
'2'=>'Febrero',
'3'=>'Marzo',
'4'=>'Abril',
'5'=>'Mayo',
'6'=>'Junio',
'7'=>'Julio',
'8'=>'Agosto',
'9'=>'Septiembre',
'10'=>'Octubre',
'11'=>'Noviembre',
'12'=>'Diciembre'
);
$dias = range(1, 31);
$anios = range(date('Y')-1, date('Y'));
?>
<form class="form-inline" method="POST" id="recibidos-form">
<input type="hidden" name="accion" value="buscar-recibidos" />
<input type="hidden" name="sesion" class="sesion-ipt" />
<div class="form-group">
<label for="dia">Día</label>
<select class="form-control" id="dia" name="dia">
<?php
echo '<option value="0">Todos</option>';
foreach ($dias as $value) {
echo '<option value="'.$value.'">'.$value.'</option>';
} ?>
</select>
</div>
<div class="form-group">
<label for="mes">Mes</label>
<select class="form-control" id="mes" name="mes">
<?php foreach ($meses as $key => $value) {
echo '<option value="'.$key.'">'.$value.'</option>';
} ?>
</select>
</div>
<div class="form-group">
<label for="anio">Año</label>
<select class="form-control" id="anio" name="anio">
<?php foreach ($anios as $value) {
echo '<option value="'.$value.'">'.$value.'</option>';
} ?>
</select>
</div>
<button type="submit" class="btn btn-primary">Buscar</button>
</form>