- Mitglied seit
- 4 Dez 2010
- Beiträge
- 1,995
- Punkte für Reaktionen
- 8
- Punkte
- 38
Schaue ich mir an.so grob läuft es ... wieder mit den Rechten ein wenig Troubel ... aber geht
mit den Pseudos bin ich überfordert: hier angehängt
Schaue ich mir an.so grob läuft es ... wieder mit den Rechten ein wenig Troubel ... aber geht
mit den Pseudos bin ich überfordert: hier angehängt
<?php
/*
+---------------------------------------------------------------------+
| |
| SensorAndSwitch Automation Pro |
| PseudoGerä-Script |
| =============================================================== |
| -> Sprit |
| tankentanken.de |
| |
+---------------------------------------------------------------------+
*/
error_reporting(0);
include __DIR__."/../include/psg.php";
$PLZStadt="Umkreis";
$Benzin="supere5"; # Möchkeiten: supere5, supere10, diesel
$km="5"; # Such-Umkreis in km
$url='http://www.tankentanken.de/suche/'.$Benzin.'/'.$km.'/'.$PLZStadt.'/'.BREITENGRAD.'/'.LAENGENGRAD;
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0)");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$Status = curl_exec($ch);
curl_close($ch);
if ($Status) {
$x=$Status;
do {
$x=substr($x,strpos($x,'<div class="price">')+19);
$x=substr($x,strpos($x,'<div class="price">')+19);
$Preis=substr($x,0,4);
$Name=substr($x,strpos($x,'<div class="name">')+18);
$Tanke=explode("<",$Name);
$T=explode("|",$Tanke[0]);
$T[0]=trim($T[0]);
$T[1]=trim($T[1]);
} while ($Preis=="-.--");
echo "P#".'<div style="font-size:26px;text-align:right;width:310px;position:relative;top:-15px;">'.strtoupper($Benzin).": ".$Preis."9 .".'</div><div style="font-size:20px;text-align:right;width:310px;position:relative;top:-15px;">'.$T[0].", ".$T[1].'</div>'."*HTML#";
}
else {
echo "P##E##";
}
exit;
?>
<?php
/*
+---------------------------------------------------------------------+
| |
| SensorAndSwitch Automation Pro |
| PseudoGerä-Script |
| =============================================================== |
| -> Sprit |
| tankentanken.de |
| |
+---------------------------------------------------------------------+
*/
error_reporting(0);
include __DIR__."/../include/psg.php";
$PLZStadt="Umkreis";
$Benzin="supere5"; # Möchkeiten: supere5, supere10, diesel
$km="5"; # Such-Umkreis in km
$url='http://www.tankentanken.de/suche/'.$Benzin.'/'.$km.'/'.$PLZStadt.'/'.BREITENGRAD.'/'.LAENGENGRAD;
$Status=web($url,$post);
if ($Status) {
$x=$Status;
do {
$x=substr($x,strpos($x,'<div class="price">')+19);
$x=substr($x,strpos($x,'<div class="price">')+19);
$Preis=substr($x,0,4);
$Name=substr($x,strpos($x,'<div class="name">')+18);
$Tanke=explode("<",$Name);
$T=explode("|",$Tanke[0]);
$T[0]=trim($T[0]);
$T[1]=trim($T[1]);
} while ($Preis=="-.--");
echo "P#".'<div style="font-size:26px;text-align:right;width:310px;position:relative;top:-15px;">'.strtoupper($Benzin).": ".$Preis."9 .".'</div><div style="font-size:20px;text-align:right;width:310px;position:relative;top:-15px;">'.$T[0].", ".$T[1].'</div>'."*HTML#";
}
else {
echo "P##E##";
}
exit;
?>
ah Mist, jetzt warst Du schneller, dabei war ich gerade so stolz ... (ach quatsch) da ich pseudowetter selbst umgestellt habe und es funktioniert