Einnahmen von Layer-ads.de als RSS-Feed immer aktuell anzeigen
Wenn ihr gerne euren Layerads-Verdienst im Feedreader anzeigen wollt, koennt ihr mit diesem PHP Skript einen Feed erzeugen:
<rss version="2.0">
<channel>
<title>Layer-ads.de Kontostand</title>
<?
$contents = file_get_contents ("http://layer-ads.de/api/BLABLABLA");
$simplexml = simplexml_load_string ($contents);
$amount = $simplexml->xpath ("//layerads/stats/balance");
foreach ($amount as $a)
{
print "<item>";
print "<title>Layer-ads.de Kontostand: " . $a . " EUR</title>";
print "</item>";
}
?>
</channel>
</rss>
Die URL fuer oben findet ihr im Layer-Ads Webinterface bei “Statistiken”.
Ich habe uebrigens auch ein aehnliches Skript fuer Affilinet geschrieben.