2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

Google-weather with other address

git-svn-id: https://svn.fhem.de/fhem/trunk@911 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinhaas 2011-06-08 15:59:07 +00:00
parent 587ace01cc
commit f0ab53cbc5

View File

@ -69,7 +69,7 @@ $WEATHER = website_WEATHER($weathercity, $weathercountry, $weatherlang);
echo "T/Hum: ".$WEATHER[0]['temperatur']."&deg; / $hum<br/>\n";
echo $WEATHER[0]['wind']."<br/>\n";
echo "<img src=\"".$WEATHER[0]['icon']."\" alt=\"".$WEATHER[0]['condition']."\"/>\n";
echo "<img src=\"http://www.google.com/ig/images/weather".$WEATHER[0]['icon']."\" alt=\"".$WEATHER[0]['condition']."\" />\n";
echo "</font></td><td>";
for($i=1; $i<5; $i++)
@ -77,7 +77,7 @@ $WEATHER = website_WEATHER($weathercity, $weathercountry, $weatherlang);
echo "<b><font $fontcolor3>".$WEATHER[$i]['weekday']."</b><br/>\n";
echo $WEATHER[$i]['condition']."<br/>\n";
echo "min. ".$WEATHER[$i]['low']."&deg; max. ".$WEATHER[$i]['high']."&deg;<br/>\n";
echo "<img src=\"".$WEATHER[$i]['icon']."\" alt=\"".$WEATHER[$i]['condition']."\" />\n";
echo "<img src=\"http://www.google.com/ig/images/weather".$WEATHER[$i]['icon']."\" alt=\"".$WEATHER[$i]['condition']."\" />\n";
echo "</font></td><td>";
}