Navigation :

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




Site Sponsors :

Bookmark :

Links :

dvd information
wwwstores
dropshippers

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


World population

Display the world population

<?php
//this script will display the worlds population
//this is the url with the info
$url = "http://www.census.gov/cgi-bin/ipc/popclockw/index.html";
//open this file to read
$fp = fopen($url, "r");
$search = fread($fp, 50000);
fclose($fp);
//search for the tags which surround the figure
$search = ereg("<p><h1>(.*)</h1>", $search, $content);
echo "<H1>$content[1]</H1>";
?>