Тема
:
нужен блок случайного вывода картинок из папки
Показать сообщение отдельно
#
4
Alexander-V-Sh
Бывалый
Регистрация: 19.04.2006
Сообщения: 352
13.09.2006, 21:28
так наверно:
Цитата
if (eregi("block-Random_Pics.php", $_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}
$CONF["file_types"] ='gif|jpg|png';
$dh = opendir('images/xday');
while($fname = readdir($dh)){
$file_array = explode('.', $fname);
$num = count($file_array);
$fileres = $file_array[($num - 1)];
$file_types = explode("|", $CONF['file_types']);
if(in_array($fileres, $file_types)){
$files[] = $fname;
}
}
$img = mt_rand (0, count ($files) - 1);
$content = "<center><IMG SRC=\"images/xday/".$img."\"></center>";