|
[ Autoren gesucht! ]
|
PHP-Homepage.de sucht laufend Autoren für News und Artikel
Interesse?
|
|
 |
|
[Start] [Suche] [Neue Einträge]
| voyeur.php | <?php
if(!($myFile=fopen("http://www.fireball.de/fcgi/voyeur.fcg?action=voyeur-queries","r"))) {
echo "the news interface is down for maintenance.";
exit;
}
while(!feof($myFile)) {
$myLine.=fgets($myFile,255);
}
fclose($myFile);
$start="<!-- begin queries -->";
$end="<!-- end queries -->";
$start_position=strpos($myLine, $start);
$end_position=strpos($myLine, $end)+strlen($end);
$length=$end_position-$start_position;
$myLine=substr($myLine, $start_position, $length);
echo $myLine;
?> |
|