Viewing file: repmetas4.php (4.12 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:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:active {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
-->
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
}
//-->
</script>
</head>
<body text="#333333" link="#666666" vlink="#666666" alink="#666666">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="33%"> </td>
<?php
require('conexion2.php');
$stmt = ociparse($c1,"select nombre_proyecto,objetivo_general,objetivo_especifico from sia_pga_origen where pga_id=$id");
$result = OCIExecute($stmt);
while (OCIFetchInto($stmt, $cur)) {
$nam = $cur[0];
$obj = $cur[1];
$obe = $cur[2];
$obe = str_replace("\n", "<br>", $obe);
//echo $nextel;
}
?>
<td width="34%"><p><font size="5" face="Verdana, Arial, Helvetica, sans-serif">Proyecto
Prioritario: <font color="#FF9900"><?php echo $id; ?></font> <br>
<font color="#999999" size="3"><strong><?php echo $nam; ?> </strong></font></font></p>
<table width="550" border="0" cellspacing="0" cellpadding="4">
<tr bgcolor="#F3F3F3">
<td bgcolor="#FFFF99"><div align="right"><a href="#"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" onclick="MM_callJS('history.go(-1);')">Regresar</font></a></div></td>
</tr>
<tr bgcolor="#F3F3F3">
<td bgcolor="#F3F3F3"> <div align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Objetivo:</strong></font></div></td>
</tr>
<tr valign="top" bgcolor="#FFFFE1">
<td><font size="2" face="Arial, Helvetica, sans-serif"><?php echo $obj; ?></font></td>
</tr>
<tr valign="top" bgcolor="#FFFFE1">
<td bgcolor="#F3F3F3"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Objetivo
Específico :</strong></font></td>
</tr>
<tr valign="top" bgcolor="#FFFFE1">
<td><font size="2" face="Arial, Helvetica, sans-serif"><?php echo $obe; ?></font></td>
</tr>
<tr valign="top" bgcolor="#FFFFE1">
<td bgcolor="#F3F3F3"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Proyectos
Internos asociados al proyecto prioritario:</strong></font></td>
</tr>
<tr valign="top" bgcolor="#FFFFE1">
<td bgcolor="#ECF5FF"> <table cellpadding="2">
<?php
require('conexion2.php');
$stmt1 = ociparse($c1,"select plan_proyecto_id from sia_plan_metas_pga where pga_id = $id");
$result1 = OCIExecute($stmt1);
while (OCIFetchInto($stmt1, $cur1)) {
$id1 = $cur1[0];
$stmt2 = ociparse($c1,"select nombre,objetivo from sia_plan_proyecto where plan_proyecto_id = $id1");
$result2 = OCIExecute($stmt2);
while (OCIFetchInto($stmt2, $cur2)) {
$nam2 = $cur2[0];
$obj2 = @$cur2[2];
}
?>
<tr valign="top" bgcolor="#FFFFFF">
<td><font size="2" face="Arial, Helvetica, sans-serif"><a href="reqrepmetas2.php?id=<?php echo $id1; ?>"><?php echo $nam2; ?></a><br>
<?php echo $obj2; ?> </font></td>
</tr>
<?php } ?>
</table></td>
</tr>
</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>
|