ciberjoerg
Erfahrenes Mitglied
ich hab folgendes Script, leider bekomm ich es einfach nicht so hin das ich wenn KEIN bild in dem Verzeichniss ist das ein Alternativbild angezeigt wird.
PHP:
<?php $verz=@opendir ('upics/typen/thumb/'.htmlspecialchars($user->nic).'/');
while ($file = @readdir ($verz)) {
if($file != "." && $file != ".."){
echo "<a href=\"javascript:void(0);\" onmouseover=\"Tip('<img src=\'upics/typen/$user->nic/$file\' width\'320\'>', WIDTH, 320, PADDING, 6, BGCOLOR, '#666666')\" onmouseout=\"UnTip()\"><img src='upics/typen/thumb/$user->nic/$file' alt='User Avatar:' height='60' border='0'></img></a>";
}
else{
}
}
print mysql_error();
@closedir($verz); ?>