US population

This script takes the information from the US goverment census page and displays the current US population on the page

<?
$url = "http://www.census.gov/cgi-bin/popclock/index.html";
$fp = fopen($url, "r");
$search = fread($fp, 32000);
fclose($fp);
$search = ereg("<CENTER><H2> (.*)</H2>", $search, $content);
echo "<h2>$content[1]</h2>";
?>