Viewing file: redaire_contam.php (2.88 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<? switch ($contam){
//Para PM10
case '10':
$nombrec=PM10; //Para escribir el nombre del contaminante
$unidadm='µg/m3';
$destino='2006pm10.php'; //Archivo destino para fecha ant y fecha post
$factorx=1; // Factor de multiplicacion para la guía de color
$norma='155';
break;
//Para PST
case '3':
$nombrec=PST;
$unidadm='µg/m3';
$destino='2006pst.php';
$factorx=0.5;
$norma='300';
break;
//Para SO2
case '1':
$nombrec=SO2;
$unidadm='ppb';
$destino='2006so2.php';
$factorx=1.2;
$norma='124';
break;
//Para NO2
case '8':
$nombrec=NO2;
$unidadm='ppb';
$destino='2006no2.php';
$factorx=2;
$norma='170';
break;
//Para CO
case '6':
$nombrec=CO;
$unidadm='ppm';
$destino='2006co.php';
$factorx=10.6;
$norma='35';
break;
//Para 03
case '14':
$nombrec=O3;
$unidadm='ppb';
$destino='2006o3.php';
$factorx=2.5;
$norma='79';
break;
case '89':
$nombrec='Precipitaciones';
$unidadm='mm';
$destino='2006pcp.php';
$factorx=4.9;
$norma='';
break;
}?>
<?
//PROBLEMA AGOSTO 01 - FECHA NO Válida
//SOLUCIÓN: antes de hacer el getdate restar un día del timestamp actual para no hacer la resta con la variable dia (mday)
$menosuno=mktime()-86400;
$today = getdate($menosuno);
//$today = getdate();
$month = $today['month'];
$montho = $today['mon'];
//$mday = $today['mday']-1;
$mday = $today['mday'];
$year = $today['year'];
//$wd = $today['wday']-1;
$wd = $today['wday'];
$sing = isset($acc);
if ($sing == true) {
$year = $anox;
$montho = $mesx;
$mday = $diax;
}
if ($sing == true) {
$sh = 0;
if ($acc == "next") {
$tom = mktime(0,0,0,date("$montho") ,date("$mday")+1,date("$year"));
$sh = 1;
}
if ($acc == "prev") {
$tom = mktime(0,0,0,date("$montho") ,date("$mday")-1,date("$year"));
$sh = 1;
}
if ($acc == "igual") {
$tom = mktime(0,0,0,date("$montho") ,date("$mday"),date("$year"));
$sh = 1;
}
if ($sh == 0) {
$tom = mktime(0,0,0,$montho,$mday,$year);
}
$today = getdate($tom);
$montho = $today['mon'];
$month = $today['month'];
$mday = $today['mday'];
$year = $today['year'];
$wd = $today['wday'];
if ($montho < 10) {
$montho = 0 . $montho;
}
if ($mday < 10) {
$mday = 0 . $mday;
}
$fcons = $mday . "/" . $montho . "/" . $year;
}else{
if ($montho < 10) {
$montho = 0 . $montho;
}
if ($mday < 10) {
$mday = 0 . $mday;
}
$fcons = $mday . "/" . $montho . "/" . $year;
}
if ($wd==0) {
$wda = "Domingo";
}
if ($wd==1) {
$wda = "Lunes";
}
if ($wd==2) {
$wda = "Martes";
}
if ($wd==3) {
$wda = "Miércoles";
}
if ($wd==4) {
$wda = "Jueves";
}
if ($wd==5) {
$wda = "Viernes";
}
if ($wd==6) {
$wda = "Sábado";
}?>
|