Andreas: News News News

Beitrag lesen

OK, mehr input.
Hoster ist Kontent. Folgendes Script heise.php versuche ich zu includen:
<?
print "<span class="heisenews">";
$fcontents = join ('', file ('http://www.heise.de/newsticker/heise.rdf'));
echo $fcontents;
$fcontents = str_replace ("</item>", "", $fcontents);
$fcontents = str_replace ("</link>", "", $fcontents);
$splices = explode ("<item>", $fcontents);
for ($i = 1; $i < count($splices); $i++){
 $link = explode("<link>",$splices[$i]);
 //$link[1] = strip_tags($link[1]);
 $headline = str_replace ("<title>", "<a href="" . trim($link[1]) . "" target="_blank" class="heiseheadline">", $splices[$i]);
 $headline = str_replace ("</title>", "</a>", $headline);
 $headline = explode ("<link>", $headline);
 $headline = $headline[0];
 print $headline . "<img src="1.gif" height=20 width=1 align=top><br>";
}
print "</span>";
?>

test.php:
<?php
    @include("heise.php");
?>

Angezeigt wird aber überhaupt nichts.
Ich hab schon früher mit anderen News-Scripten mich versucht die auf News-Dateien zugreifen. Es funktioniert einfach nicht.

Gruß Andreas