Viewing file: detalletramite.php (2.67 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 width="25%"> </td>
<?php
// Procedure 3, TRM Detail
// Selección a partir CODIGO_T de detalle de trámites.
// Requiere que se pase el NOMBRE_E
include('connect.php');
$codigo_t = $codigo_tramite;
$stmt = ociparse($c1,"SELECT CODIGO, NOMBRE, PARAQUESIRVE, DOCUMENTOENTREGADO, COSTO, TELEFONOINFO, DEPENDENCIA FROM TRAMITES where CODIGO=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$codigo_t = $cur[0];
$nombre_t = $cur[1];
$paraquesirve = $cur[2];
$documentoentregado = $cur[3];
$costo = $cur[4];
$telefonoinfo = $cur[5];
$dependencia = $cur[6];
// Subprocedure Detail for Responsible
$stmt_1 = ociparse($c1,"SELECT NOMBRE FROM DEPENDENCIAS where CODIGO=$dependencia");
$result_1 = OCIExecute($stmt_1);
while (OCIFetchInto($stmt_1, $cur_1)) {
$nombre_dependencia = $cur_1[0];
}
}
// TRM Detail End
?>
<td width="50%"><table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td colspan="3">Menu Básico: <a href="detallequien.php?codigo_t=<?php echo codigo_t; ?>">Quién,
Cómo, Cuanto Tiempo y Qué Recibo</a> <strong>I</strong>
<a href="detalleextendido.php?codigo_t=<?php echo codigo_t; ?>">Más
Detalles</a></td>
</tr>
<tr>
<td colspan="3">Trámite: <?php echo $nombre_t; ?></td>
</tr>
<tr>
<td>Para qué sirve: </td>
<td colspan="2"><?php echo $paraquesirve; ?></td>
</tr>
<tr>
<td width="33%">Como respuesta recibe:</td>
<td colspan="2"><?php echo $documentoentregado; ?></td>
</tr>
<tr>
<td width="33%">Costo: $ <?php echo $costo; ?></td>
<td width="33%">Informes: <?php echo $telefonoinfo; ?></td>
<td width="33%">Dependencia: <?php echo $nombre_dependencia; ?></td>
</tr>
<tr bgcolor="#CCCCCC">
<td width="33%"><a href="detallepasos.php?codigo_t=<?php echo codigo_t; ?>">Pasos</a></td>
<td width="33%"><a href="detallerequisitos.php?codigo_t=<?php echo codigo_t; ?>">Requisitos</a></td>
<td width="33%"><a href="detalledocumentos.php?codigo_t=<?php echo codigo_t; ?>">Documentos</a></td>
</tr>
</table></td>
<td width="25%"> </td>
</tr>
</table>
</body>
</html>
|