-
Notifications
You must be signed in to change notification settings - Fork 3
/
resumen_index.php
executable file
·72 lines (66 loc) · 2.31 KB
/
resumen_index.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
<!DOCTYPE html>
<html>
<head>
<!-- bootstrap 3 -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="bootstrap/js/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
<!-- datepicker -->
<link rel="stylesheet" href="datepicker/css/bootstrap-datepicker.css">
<script src="datepicker/js/bootstrap-datepicker.js"></script>
<script src="datepicker/locales/bootstrap-datepicker.es.min.js"></script>
<script type="text/javascript">
$(function () {
$('#datepicker').datepicker({
format: "dd-mm-yyyy",
language: "es"
});
});
</script>
<style>
body {
padding-top: 70px;
padding-bottom: 30px;
}
.theme-dropdown .dropdown-menu {
position: static;
display: block;
margin-bottom: 20px;
}
.theme-showcase > p > .btn {
margin: 5px 0;
}
.theme-showcase .navbar .container {
width: auto;
}
.pager {
margin-top: 0;
}
</style>
</head>
<?php
if (isset($_GET['fecha_inicio']) && isset($_GET['fecha_final']) && isset($_GET['pagina'])) {
$fecha_inicio = $_GET['fecha_inicio'];
$fecha_final = $_GET['fecha_final'];
$pagina = $_GET['pagina'];
}else{
$fecha_inicio = 'N';
$fecha_final = 'N';
$pagina = 1;
}
?>
<body>
<div class="container">
<h1>Resumen diaria de Boletas y Notas</h1>
<a class="btn btn-default" href="resumen.php?h=0&gen=02&emp=01" target="_blank">Hoy</a>
<a class="btn btn-default" href="resumen.php?h=1&gen=02&emp=01" target="_blank">Hace 1 Dia</a>
<a class="btn btn-default" href="resumen.php?h=2&gen=02&emp=01" target="_blank">Hace 2 Dia</a>
<a class="btn btn-default" href="resumen.php?h=3&gen=02&emp=01" target="_blank">Hace 3 Dia</a>
<a class="btn btn-default" href="resumen.php?h=4&gen=02&emp=01" target="_blank">Hace 4 Dia</a>
<a class="btn btn-default" href="resumen.php?h=5&gen=02&emp=01" target="_blank">Hace 5 Dia</a>
<a class="btn btn-default" href="resumen.php?h=6&gen=02&emp=01" target="_blank">Hace 6 Dia</a>
<a class="btn btn-default" href="resumen.php?h=7&gen=02&emp=01" target="_blank">Hace 7 Dia</a>
</div>
</body>
</html>
<?php //print_r($row2) ?>