For some reason I can't open an RSS file using the following but it works fine for regular pages.
$fp=@fopen($url,'r')
or die ("Just couldn't do it for ya");
while ($line = fgets($fp,1024)){
echo $line;
}
fclose($fp);
Is there something I need to do different to get an XML Rss file.