Viewing file: mapapm10.php (1.32 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php require_once('Connections/oa.php'); ?>
<?php
$cm_rsEnlace = "0";
if (isset($cm)) {
$cm_rsEnlace = (get_magic_quotes_gpc()) ? $cm : addslashes($cm);
}
mysql_select_db($database_oa, $oa);
$query_rsEnlace = sprintf("SELECT idcontenido, titulo, textoinicial, textocompleto, enlace FROM contenidos WHERE idcat = %s ORDER BY orden", $cm_rsEnlace);
$rsEnlace = mysql_query($query_rsEnlace, $oa) or die(mysql_error());
$row_rsEnlace = mysql_fetch_assoc($rsEnlace);
$totalRows_rsEnlace = mysql_num_rows($rsEnlace);
?>
<link href="css/enlaces.css" rel="stylesheet" type="text/css">
<p class="textoTitulo"><?php echo $row_rsEnlace['titulo']; ?></p>
<p class="textoNormal"><?php echo $row_rsEnlace['textoinicial']; ?></p>
<table width="563" border="0">
<tr>
<td width="150">
<iframe src="<?php echo $row_rsEnlace['enlace']; ?>" name="cuerpo" width="563" height="550" scrolling="No" frameborder="0" id="cuerpo" framespacing="0" border="0" > Lo sentimos mucho. Su navegador no soporta IFRAMES. Debe actualizarse.</iframe></td>
</tr>
</table>
<?php
mysql_free_result($rsEnlace);
?>
<p class="titulo"><a href="anexos/procPM10.pdf" target="_blank">Metodología
técnica utilizada para el cálculo del promedio ponderado por áreas
del valor de pm10 por localidades.<br>
<br>
</a></p>
|