Hallo,
klappt irgendwie nicht.
Hier mein Code:
<?php
$url = "http://www.Domain.net/news.php";
if (file_exists($url)){
$file = fopen($url,"r");
if ($file){
while (!feof($file)) {
$zeile = fgets($file,255);
print "$zeile<br>\n";
}
fclose($file);
}
else
echo "nix";
}
?>