Viewing file: detallepasos.php (2.24 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">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
}
//-->
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="25%"> </td>
<td width="50%"><table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td colspan="3">Menu Básico: <a href="#" onMouseOver="MM_callJS('history.go(-1);')">Regresar...</a><a href="detalleextendido.php?codigo_t=<?php echo codigo_t; ?>"></a></td>
</tr>
<?php
// Procedure 5, TRM Detail Steps
// Selección a partir CODIGO_T de detalle de trámites.
// Desplegable como un sobre detalle.
include('connect.php');
$stmt = ociparse($c1,"SELECT NOMBRE, LUGAR, DIRECCION, TELEFONO, COSTO, SITIOPAGO, FORMAPAGO FROM PASOS where CODIGOTRAMITE=$codigo_t");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$nombre_p = $cur[0];
$lugar_p = $cur[1];
$direccion_p = $cur[2];
$telefono_p = $cur[3];
$costo_p = $cur[4];
$sitiopago_p = $cur[5];
$formapago_p = $cur[6];
?>
<tr>
<td width="33%">Requisitos:</td>
<td colspan="2">
<table width="100%" border="0" cellspacing="0" cellpadding="4">
<tr>
<td>Nombre: <?php echo $nombre_p; ?></td>
</tr>
<tr>
<td>Lugar: <?php echo $lugar_p; ?></td>
</tr>
<tr>
<td>Dirección: <?php echo $direccion_p; ?></td>
</tr>
<tr>
<td>Teléfono: <?php echo $telefono_p; ?></td>
</tr>
<tr>
<td>Costo: <?php echo $costo_p; ?></td>
</tr>
<tr>
<td>Sitio de Pago: <?php echo $sitiopago_p; ?></td>
</tr>
<tr>
<td>Forma de Pago: <?php echo $formapago_p; ?></td>
</tr>
</table>
</td>
</tr>
<?php
}
// TRM Detail Require End
?>
</table></td>
<td width="25%"> </td>
</tr>
</table>
</body>
</html>
|