welli found some code but it int working:
<?
$url = "http://securityresponse.symantec.com/avcenter/venc/data/w32.beagle.az@mm.html";
$file = fopen($url, 'r');
if($file)
{
while (!feof($file))
{
$line = fgets($file, 1024);
# you can effectively get any value from a webpage if you know
# the pattern surrounding the value u want
if (eregi('<body>(.*)</body>', $line, $out))
{
$content = $out[1];
break;
}
}
//empty($content) ? print '' : print $content;
echo rawurldecode($content);
fclose($file);
}
else
{
echo "Cannot find what u looking for sorry";
}
?>