blob: 9791c38396c3a0f73a9ca45eacdaee4ad51e42da [file] [log] [blame]
<?php
function printReleaseNotes($url)
{
$content = file_get_contents($url);
ereg('.*<body>(.*)</body>.*', $content, $matches);
print "$matches[1]\n";
}
?>