Viewing file: Inicio.php (3.73 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Consulta Red Capital</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td> </td>
<td><form name="form2" method="post" action="detalleentidad.php">
<table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="30%">Entidades:</td>
<td width="70%"><select name="id" id="id">
<?php
// Procedure 1, Entidades
include('connect.php');
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE FROM ENTIDADES ORDER BY NOMBRE");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_e = $cur[0];
$nombre_e = $cur[1];
echo "<option value=\"$codigo_e\">$nombre_e</option>";
}
// Entidad End
?>
</select></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input type="submit" name="Submit" value="Ver Detalle Entidad...">
</div></td>
</tr>
</table>
</form></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><form name="form2" method="post" action="">
<table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="30%">Entidades:</td>
<td width="70%"><select name="codigo_entidad" id="codigo_entidad">
<?php
// Procedure 1, Entidades
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE FROM ENTIDADES ORDER BY NOMBRE");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_e = $cur[0];
$nombre_e = $cur[1];
echo "<option value=\"$codigo_e\">$nombre_e</option>";
}
// Entidad End
?>
</select></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input type="submit" name="Submit" value="Filtrar Trámites...">
</div></td>
</tr>
</table>
</form></td>
<td> </td>
</tr>
<tr>
<td width="25%"> </td>
<td width="50%"><form name="form1" method="post" action="detalletramite.php">
<table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="30%">Trámites:</td>
<td width="70%"><select name="codigo_tramite" id="codigo_tramite">
<?php
// Determina el tipo de consulta
$isce = isset($codigo_entidad);
if ($isce == false) {
// Procedure 2, Tramites
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE FROM TRAMITES WHERE ESTADO=4 or ESTADO=0 ORDER BY NOMBRE");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_t = $cur[0];
$nombre_t = $cur[1];
echo "<option value=\"$codigo_t\">$nombre_t</option>";
}
// Entidad End
}else{
// Procedure 2, Tramites
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE FROM TRAMITES WHERE CODENTI=$codigo_entidad and (ESTADO=4 or ESTADO=0) ORDER BY NOMBRE");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_t = $cur[0];
$nombre_t = $cur[1];
echo "<option value=\"$codigo_t\">$nombre_t</option>";
}
// Entidad End
}
?>
</select></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input type="submit" name="Submit2" value="Ver Detalle del Trámite...">
</div></td>
</tr>
</table>
</form></td>
<td width="25%"> </td>
</tr>
</table>
</body>
</html>
|