$xmlfile = fopen("http://example", "r");
if(!$xmlfile)die("cannot open the xml file");
$readfile = fread($xmlfile ,40000);
$searchfile = eregi("- (.*)
", $readfile ,$arrayreg);
$filechunks = explode("- ", $arrayreg[0]);
$count = count($filechunks);
echo "";
echo "latest news ";
for($i=1 ; $i<=$count-1 ;$i++)
{
ereg("(.*) ",$filechunks[$i], $title);
ereg("(.*)",$filechunks[$i], $links);
ereg("(.*) echo "";
echo $title[1];
echo " ";
echo "$links[1]";
echo " ";
echo $desc[1];
echo " ";
}
echo "
";
?>