Oops, sorry
This is the code
Code:
<?php
$url="http://www.rssfeedconverter.com/services/rssconverter.php?format=php&idesc=no&fontcolor=000000&linkcolor=000000&url=http%3A%2F%2Fnews.google.com%2Fnews%3Fhl%3Den%26ned%3Dus%26ie%3DUTF-8%26q%3D%2522Britney%2BSpears%2522%26output%3Drss";
$contents = '';$fp = @fopen($url,"r");
while (!feof($fp)) $contents .= @fread($fp, 8192);
fclose($fp);
echo $contents;?>
That shows the rss news content I want it to show but it messes up the validation because the urls in the rss feed arent done correctly, so I go from having no errors to having 80.
Bookmarks