$vn = "nickpage/userpics";
$verzeichnis = opendir($vn);
while($file = readdir($verzeichnis))
{
$s = @getimagesize($vn."/".$file);
if(in_array($s[2], array(1,2,3)))
$auswahl[] = $file;
}
mt_srand((double)microtime()*1000000);
$number = mt_rand(0,count($auswahl)-1);
$auswahl = str_replace(".jpg", "", $auswahl);
echo "<table style="border-width:1px; border-style:solid; border-color:#000000" cellpadding="0" cellspacing="0" width="180" height="180"><tr><td><a href=http://www.talklevel.de/nickpage/nickpage.php?uid=" . $auswahl[$number] . "><img src='".$vn."/".$auswahl[$number].".jpg' border=0></a></td></tr></table>";