- Mitglied seit
- 4 Dez 2010
- Beiträge
- 1,995
- Punkte für Reaktionen
- 8
- Punkte
- 38
neue pseudowettervorhersage.php
PHP:
<?php
/*
+---------------------------------------------------------------------+
| |
| SensorAndSwitch Automation Pro |
| PseudoGeräte-Script |
| =============================================================== |
| Wettervorhersage RSS-Feed |
| |
+---------------------------------------------------------------------+
*/
error_reporting(0);
include "conf/sensorandswitchbundesland.phpconf";
include "include/includedateien.php";
include "include/includefunctions.php";
include "include/includeconf.php";
include "include/includeconfig.php";
include "include/includedefine.php";
if ($_GET["info"]=="status") {
$url="http://www.wetterleitstelle.de/wettervorhersage_".$bundesland.".xml";
$Status=web($url,$post);
$Status=trim(strip_tags($Status));
if ($Status) {
echo "P#"."<div style='font-size:10px;text-align:left;width:310px;height:50px;position:relative;top:-10px;overflow:auto;'>".$Status."</div>"."*HTML#";
}
else {
echo "P##E##";
}
}
exit;
?>