Feach a URL and print as HTML using SafFeachURL

<?
//This function will allow you to feach an URL, you gust pass the url it all the HTML text comes as HTML
function SafFeachURL($url){
$handle = fopen("$url", "rb");
$contents = '';
while (!
feof($handle)) {
$contents .= fread($handle, 157286);
}
fclose($handle);
return
$contents;
}
print
SafFeachURL("http://theseoarticles.blogspot.com/");
?>