-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathllegada_tarde.php
72 lines (65 loc) · 2.3 KB
/
llegada_tarde.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
<?php
/**
* @author Victoria Marino
* @package Index
* @version 2
*/
/*Con include_once llamamos a la p‡gina de referencia y la mostramos*/
include_once(dirname(__FILE__) . "/includes/common.php");
include_once($APP_PATH . "/includes/valid_session.php");
include_once($APP_PATH . "/includes/header.php");
include_once($APP_PATH . "/Classes/Combo.php");
if($_SESSION["nivel"]==1 || $_SESSION["nivel"]==2 || $_SESSION["nivel"]==3 || $_SESSION["nivel"]==5){
if($_SESSION["nivel"]==1){
$autorizado="";
} else {
$autorizado="disabled";
}
$fecha_actual=date("d/m/Y");
?>
<!--Formulario para buscar listado de alumnos que ya tienen como ausente el dia.-->
<form action="lista_ausentes.php" method="post" enctype="multipart/form-data">
<fieldset>
<legend>Listado de Alumnos Ausentes</legend>
<label for="fecha">Fecha: </label><input type="text" name="fecha" value="<?php echo $fecha_actual; ?>" <?php echo $autorizado; ?>/><br>
<label for="tipocurso">Tipo de Curso: </label><select name="tipocurso">
<?php
//Llenar el combo Tipo de Curso
if ($row_tc = mysql_fetch_array($combo_tipocurso)){
do {
echo '<option value= "'.$row_tc["id_tipocurso"].'">'.$row_tc["descripcion"].'</option>';
} while ($row_tc = mysql_fetch_array($combo_tipocurso));
}
?>
</select><br/>
<label for="curso">Curso: </label><select name="curso">
<?php
//Llenar el combo Curso
if ($row_c = mysql_fetch_array($combo_curso)){
do {
echo '<option value= "'.$row_c["id_curso"].'">'.$row_c["descripcion"].'</option>';
} while ($row_c = mysql_fetch_array($combo_curso));
}
?>
</select><br/>
<label for="division">División: </label><select name="division">
<?php
//Llenar el combo Division
if ($row_d = mysql_fetch_array($combo_division)){
do {
echo '<option value= "'.$row_d["id_division"].'">'.$row_d["descripcion"].'</option>';
} while ($row_d = mysql_fetch_array($combo_division));
}
?>
</select><br/>
<br/>
<input type="submit" value="Buscar" class="boton">
</fieldset>
<input type="hidden" name="cmd" value="buscar"/>
</form>
<?php
} else {
echo "No tiene autorización para cargar Llegadas Tardes";
}
include_once($APP_PATH . "/includes/footer.php");
?>