Viewing file: repmetas3.php (3 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Reporte Consolidado de Metas</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
a {
color: #666666;
text-decoration: none;
}
a:hover {
color: #666666;
text-decoration: underline;
}
-->
</style>
</head>
<body text="#333333" link="#666666" vlink="#666666" alink="#666666">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="33%"> </td>
<td width="34%"><p><font size="5" face="Verdana, Arial, Helvetica, sans-serif">PGA
y Proyectos</font></p>
<p><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Primero seleccione
el programa dentro del plan de gestión dentro del cual se inscribe
el proyecto y después seleccione aquel del que desea tener información
en detalle. </font></p>
<table width="550" border="0" cellspacing="0" cellpadding="4">
<tr bgcolor="#F3F3F3">
<td> <div align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Nombre
del Proyecto</font></div></td>
</tr>
<?php
require('conexion2.php');
$stmt = ociparse($c1,"select escenario_id,descripcion from sia_escenarios");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$id = $cur[0];
$nam = @$cur[1];
//echo $nextel;
?>
<tr valign="top" bgcolor="#FFFFE1">
<td><font size="2" face="Arial, Helvetica, sans-serif"><strong><a href="reqrepmetas2.php?id=<?php echo $id; ?>"><?php echo $nam; ?></a></strong></font></td>
<?php
require('conexion2.php');
$stmt1 = ociparse($c1,"select pga_id,nombre_proyecto,objetivo_general from sia_pga_origen where escenarios_id = $id");
$result1 = OCIExecute($stmt1);
while (OCIFetchInto($stmt1, $cur1)) {
$id1 = @$cur1[0];
$nam1 = @$cur1[1];
$obj = @$cur1[2];
//echo $nextel;
?>
<tr valign="top" bgcolor="#FFFFFF">
<td><font size="1" face="Arial, Helvetica, sans-serif"><img src="punq.gif" width="8" height="12">
<font size="2"><a href="reqrepmetas4.php?id=<?php echo $id1; ?>"><?php echo $nam1; ?></a></font><br>
<font color="#999999"><?php echo $obj; ?></font></font></td>
</tr>
<?php } ?>
<?php } ?>
</table>
<p> </p>
</td>
<td width="33%"> </td>
</tr>
<tr>
<td width="33%"> </td>
<td width="34%"><div align="center"><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Todos
los Derechos Reservados para el DAMA</strong><br>
<font color="#FF9900">Departamento Técnico Administrativo del Medio
Ambiente</font><br>
Este Informe es Automático<br>
2005</font></div></td>
<td width="33%"> </td>
</tr>
</table>
</body>
</html>
|