so sieht meine include.php aus. Glaube habe die mal modifiziert, weiss aber nicht mehr genau
<?php
/* Random image snippet
Call this snippet with:
RandomImage ('/media');
in your template
*/
function random_image($dir) {
if(!empty($dir))
{
$width = "160";
$folder=opendir(WB_PATH.MEDIA_DIRECTORY.'/'.$dir.'/.');
$names = array();
while ($file = readdir($folder)) {
$ext=strtolower(substr($file,-4));
if ($ext==".jpg"||$ext==".gif"||$ext==".png"){
$names[count($names)] = $file;
}
}
closedir($folder);
shuffle($names);
$image=$names[0];
$name=substr($image,0,-4);
return '<img src="'.WB_URL.MEDIA_DIRECTORY.'/'.$dir.'/'.$image.'" alt="'.$name.'" width="'.$width.'" />';
}
}
?>
Dietmar