-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrankingEnfermedadesPorLicencia.php
executable file
·84 lines (74 loc) · 2.39 KB
/
rankingEnfermedadesPorLicencia.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
78
79
80
81
82
83
84
<?php
include_once 'loginseg.php';
include_once 'Estadistica.php';
$grafico = new topEnfermedades();
$tipolicencia = $_POST['tipo_licencia'];
$limite = $_POST['sel_limite'];
if ($_POST['txt_inicio'] != ""){
$inicio = $_POST['txt_inicio'];
$grafico->setInicio($inicio);
}
if ($_POST['txt_hasta'] != ""){
$final = $_POST['txt_hasta'];
$grafico->setFinal($final);
}
$grafico->setTipolic($tipolicencia);
$grafico->setLimite($limite);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="EstilosIntegrador.css" rel="stylesheet" type="text/css"/>
<title>Sistema de Servicio Médico</title>
<script type="text/javascript" src="./jBusquedas.js"></script>
<script type="text/javascript" src="./jFechas.js"></script>
<script type="text/javascript" src="./jquery.js"></script>
<script type="text/javascript" src="./jQueryEnfermedad.js"></script>
<script type="text/javascript" src="blue-menu.files/dmenu.js"></script>
</head>
<body>
<br /> <br />
<div class="TablaPrincipal">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" height="15px" bgcolor="#C0D7E8"></td>
</tr>
<tr>
<td align="center" height="33px" valign="top" style="background: url(blue-menu.files/normal_back.png) repeat-x">
<img src="img/minilogo.png" height="33" width="130"/>
</td>
<td align="center" height="33px" valign="top" style="background: url(blue-menu.files/normal_back.png) repeat-x">
<?php include "menu.php"; ?>
</td>
</tr>
<tr>
<td colspan="2" height="10px" bgcolor="#649DC8" style='font-size: 1px;'></td>
</tr>
<tr align="center">
<td align="center" colspan="2">
<form action="mostrarListado.php"></form>
<table>
<tr align="center">
<td colspan="2"><strong>Estadísticas</strong></td>
</tr>
<tr align="center">
<td colspan="4">
<?php
echo $grafico->generar();
?>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right" height="60" colspan="2">
<hr/><dfn>Administración General de Puertos S.E. - AGP<img src="img/AGP.JPG" width="20" height="23" /></dfn>
</td>
</tr>
</table>
</div>
<p> </p>
</body>
</html>