$result = dbquery("SELECT * FROM ".DB_PHOTOS." ORDER BY photo_id DESC LIMIT 0,4");
while ($data = dbarray($result)) {
$cfontsize = rand(6,26);
echo '<a href=\''.BASEDIR.'photogallery.php?photo_id='.$data['photo_id'].'\' rel=\'tag\' style=\'font-size:'.$cfontsize.'pt;\'>'.$data['photo_title'].'</a>';
}