<?php
$min =
1;
// Minimum font size
$max =
10;
// Maximum font size
$site_url =
'http://mysite.com/';
// Your site url
// List of tags
$tags =
array(
'tags/php/'=>
'php',
// url,name
'tags/asp/'=>
'asp',
'tags/msn/'=>
'msn',
'tags/yahoo/'=>
'yahoo',
'tags/microsoft/'=>
'microsoft',
'tags/google/'=>
'google',
'tags/Wow/'=>
'wow'
);
// Print all tags
foreach($tags as $url =>
$tag)
{
echo '<span style="font-size: '.
rand($min,
$max).
'px;"><a href="'.
$site_url.
$url.
'">'.
$tag.
'</a></span>'.
"\n";
}
?>