<?php
// $Id:$
require_once 'TagCloud.php';
$tags =& new HTML_TagCloud();
// add Element
$tags->addElement('PHP','http://www.php.net', 39, strtotime("15 March 2006"));
$tags->addElement('XML','http://www.xml.org', 21, strtotime("15 May 2006"));
$tags->addElement('Perl','http://www.xml.org', 15, strtotime("15 Feb 2006"));
$tags->addElement('PEAR','http://pear.php.net', 32, time());
$tags->addElement('MySQL','http://www.mysql.com', 10, strtotime("1 May 2006"));
$tags->addElement('PostgreSQL','http://pgsql.com', 6, strtotime("1 Dec 2005"));
// output HTML and CSS
print $tags->buildALL();
show_source(__FILE__);
?>