Home | Scripts | Tutorials | Books | Hosting | Forums | Links|

Navigation:

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links






 
 

SPONSORS



 
 

US population

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

Here is the script

<?
$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>";
?>

And here is what is displayed on the screen