| Server IP : 172.67.191.97 / Your IP : 104.23.197.208 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/monitores/ |
Upload File : |
<!DOCTYPE html>
<html lang="es">
<head>
<META http-equiv=Content-Type content="text/html; charset=UTF-8">
<title>Inscripción de monitores docentes</title>
<link rel="stylesheet" media="screen" href="styles.css" >
<!–[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk
/html5.js"></script>
<![endif]–>
</head>
<link rel="stylesheet" type="text/css" href="jquery-ui-1.7.2.custom.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery-2.1.1.min.js"></script>
<SCRIPT language=JavaScript src="ajax.js" type=text/javascript></SCRIPT>
<?php
include 'conectarbdsql.php';
mysql_set_charset('utf8');
function GetDepartamentos(){
$link=Conectarse();
$consulta="select *
from departamentos
order by nombre";
$ver = mysql_query($consulta, $link)or die("Error departamentos".mysql_error());
return $ver;
}
function Geteps(){
$link=Conectarse();
$consulta="select *
from eps
order by nombre";
$ver = mysql_query($consulta, $link)or die("error eps".mysql_error());
return $ver;
}
?>
<body>
<center>
<article id="monitoria">
<header>
<div class="logo1"><img src="logo.png"/></div>
<div class="universidad"><h1>UNIVERSIDAD DE LOS LLANOS<br>VICERRECTORÍA ACADÉMICA</h1></div>
<div class="convo"><h2>Reportes</h2></div>
</header>
<form class="contact_form" action="generarreporte.php" method="post">
<div id="datos_per" style="width: 1000px;">
<fieldset>
<legend>DATOS</legend>
<table width="900px" border="0">
<tr><td>
<label>Tipo de convocatoria:</label>
<select name="tipo_con" required>
<option value="">Seleccione un tipo</option>
<option value="1">Monitorias</option>
<option value="2">Auxiliares</option>
</select> *
</td><td>
<label>Fecha inscripcion posterior a:</label>
<input type="date" name="fecha" id="fecha" required> *
</td></tr>
</table>
</fieldset>
</div>
<br />
<button class="submit" type="submit">Guardar</button>
</form>
</article>
</center>
</body>
</html>