El Clima en Filadelfia

La información del clima en Filadelfia es generada con datos actualizados de la estación meteorológica de ZP30.

 

 {source}
<!– You can place html anywhere within the source tags –>

<script language=»javascript» type=»text/javascript»>
// You can place JavaScript like this

</script>
<?php

$handle = @fopen(«/home3/zpthrzer/public_html/main/clima/wvwebpage002», «r»); //read line one by one
$textoHTML=»;

while (!feof($handle)) // Loop til end of file.
{
$buffer = fgets($handle, 4096); // Read a line.

$textoHTML = $textoHTML . $buffer;

// use mysql insert query here
}

$textoHTML = str_replace(«Current Weather Conditions as of»,»Condiciones del Tiempo»,$textoHTML);
$textoHTML = str_replace(«Temperature»,»Temperatura»,$textoHTML);
$textoHTML = str_replace(«Dew Point»,»Punto de Rocío»,$textoHTML);
$textoHTML = str_replace(«Heat Index»,»Índice de Calor»,$textoHTML);
$textoHTML = str_replace(«Wind Chill Factor»,»Sensación Térmica»,$textoHTML);
$textoHTML = str_replace(«Relative Humidity»,»Humedad Relativa»,$textoHTML);
$textoHTML = str_replace(«Barometric Pressure»,»Presión Barométrica»,$textoHTML);
$textoHTML = str_replace(«Rainfall Since Midnight»,»Lluvia (desde 00:00)»,$textoHTML);
$textoHTML = str_replace(«Missing»,»-«,$textoHTML);
$textoHTML = str_replace(«Wind Direction»,»Dirección del viento»,$textoHTML);
$textoHTML = str_replace(«Wind Speed»,»Velocidad del viento»,$textoHTML);
$textoHTML = str_replace(«Peak Wind Gust»,»Ráfaga Máxima»,$textoHTML);
$textoHTML = str_replace(«High Since Midnight»,»Temperatura máxima»,$textoHTML);
$textoHTML = str_replace(«Low»,»Temperatura mínima»,$textoHTML);
$textoHTML = str_replace(«Sunrise»,»Amanecer»,$textoHTML);
$textoHTML = str_replace(«Sunset»,»Atardecer»,$textoHTML);

echo $textoHTML;

?>
{/source}