Viewing file: xaire.php (1.59 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require('conexion4.php'); ?>
<? $stmt = ociparse($c1,"select medias_diarias.estacion_id, medias_diarias.valor
from medias_diarias, estaciones_magnitudes
where medias_diarias.magnitud_indx=estaciones_magnitudes.magnitud_indx
and medias_diarias.estacion_id=estaciones_magnitudes.estacion_id
and estaciones_magnitudes.magnitud_id=10 and to_char(medias_diarias.fecha, 'dd/mm/yyyy')='20/04/2006' order by medias_diarias.estacion_id") ; ?>
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p> Esta es una consulta de fecha 18 de Marzo de 2002 para PM 10
<?
$result = OCIExecute($stmt);
echo "<table width='40%' border='1' cellspacing='0' cellpadding='0'>";
$numm = 1;
while (OCIFetchInto($stmt, $value)) {
$estacionid = $value[0];
$vali = $value[1];
$mivar[$value[0]]= $estacionid ;
$celda = $value[0];
echo " <tr> <td width='45'><div align='center'>";
if ($mivar[$celda] = $numm) {
// echo $mivar[$celda]."A".$numm;
echo $estacionid;
} else echo $numm;
// echo $mivar [8];
echo "</div></td><td>";
echo $vali;
echo "</td></tr>";
// $numm++;
}
/* echo "</table>";
echo $value[0];
echo "<br>";
echo $value[1];*/
echo "<br>";
$num = 1;
do {
if ($mivar[$num]>0)
{
// echo $mivar[$num];
echo $num." SI<br>";
// echo $num."<br>SI<br>";
$num++;
}
else
{
echo $num." NO<br>";
$num++;
}
} while ($num < 27);
?>
<br>
<br>
</p><p>
<? echo array_values ($mivar); ?>
</p>
</body>
</html>
|