<?
$save1 = "C:\ROOT\~users\xs\rss\dg\xbox-scene.xml";
$xmlfile1 = fopen("http://www.xbox-scene.com/xbox1data/xbox-scene.xml","r");
if(!$xmlfile1)
{
echo("Feed Unavailable");
}
echo ("Successfuly opened xml<br />");
$readfile = fread($xmlfile1 ,40000);
$searchfile = eregi("<item>(.*)</item>", $readfile ,$arrayreg);
$filechunks = explode("<item>", $arrayreg[0]);
$count = count($filechunks);
$fp1=fopen($save1, "w");
echo ("Successfuly opened save<br />");
for($i=1 ; $i<=$count-1 ;$i++)
{
ereg("<title>(.*)</title>",$filechunks[$i], $title);
ereg("<link>(.*)</link>",$filechunks[$i], $links);
$output = "»<a href ='$links[1]'\>$title[1]</a><br />";
fwrite($fp1, $output);
}
fclose($fp1);
?>