Today's news from

or )
$bold_tag = '';
//$bold_tag = '';
// ooh, this isn't very efficient!
// let's just hope the file isn't too big :)
$str = implode("", file($page_url));
$news = explode($bold_tag, $str, 3);
$s = $news[0].$news[1];
// munge in the target tag
$s = preg_replace('//Ui', '', $s);
return $bold_tag.$s;
}
$page = 'latestnews.html';
echo grabnews($page);
?>