Hallo ich hab ein kleinen Script der auch Funktioniert nur mein Problem ist halt das es ja 6 Bilder sind die angezeigt werden das ist ja okey wolte es ja so nur ich möchte gerne das die Bilder nicht doppelt vorkommen also das es immer 6 verschiedene sind wäre das mit dem Script machbar
PHP:
<?php
function getFiles($dir)
{
static $files;
$allowed_file_extensions = array();
$allowed_file_extensions[] = 'gif';
$allowed_file_extensions[] = 'bmp';
$allowed_file_extensions[] = 'jpg';
$allowed_file_extensions[] = 'jpeg';
$allowed_file_extensions[] = 'png';
$len = strlen($dir);
if($dir{$len-1} == '/')
$dir = substr($dir, 0, $len-1);
if(!is_dir($dir))
return false;
$open = @opendir($dir);
if(!$open)
return false;
while($file = readdir($open)) {
if($file == "." || $file == "..")
continue;
if(preg_match('/(.*)_t([0-9]*).jpg/i', $file))
continue;
if(is_dir($dir.'/'.$file)) {
getFiles($dir.'/'.$file);
}
$e = explode('.', $file);
$ext = $e[ count($e)-1 ];
if( is_file($dir.'/'.$file) && in_array($ext, $allowed_file_extensions) ) {
$files[] = $dir.'/'.$file;
}
}
return $files;
}
$files = getFiles('image/gate');
$rand = mt_rand(0, count($files)-1);
$rand2 = mt_rand(0, count($files)-1);
$rand3 = mt_rand(0, count($files)-1);
$rand4 = mt_rand(0, count($files)-1);
$rand5 = mt_rand(0, count($files)-1);
$rand6 = mt_rand(0, count($files)-1);
?>
<script type="text/javascript">
function show_pic(file_name){
width = 42;
height = 42;
var p = "menubar=no,location=no,toolbar=no,status=no, resizable=yes,scrollbars=yes";
var x = (screen.availWidth - width - 5) / 2;
var y = (screen.availHeight - height - 5) / 2;
if (x> && y>){
p = "width="+width+",height="+height+",left="+x+",top= "+y+","+p;
}
var Fenster = window.open(file_name, 'Grossansicht', p);
Fenster.focus();
}
</script>
<?
echo '
<a onclick="showpic(\'thumb_'. $files[ $rand ] .'\');"><img src="http://www.tutorials.de/forum/'. $files[ $rand ] .'" width="32" height="32" border="0" /></a>
<a onClick="showpic(\'thumb_'. $files[ $rand2 ] .'\');"><img src="http://www.tutorials.de/forum/'. $files[ $rand2 ] .'" width="32" height="32" border="0" /></a>
<a onclick="showpic(\'thumb_'. $files[ $rand3 ] .'\');"><img src="http://www.tutorials.de/forum/'. $files[ $rand3 ] .'" width="32" height="32" border="0" /></a>
<a onclick="showpic(\'thumb_'. $files[ $rand4 ] .'\');"><img src="http://www.tutorials.de/forum/'. $files[ $rand4 ] .'" width="32" height="32" border="0" /></a>
<a onclick="showpic(\'thumb_'. $files[ $rand5 ] .'\');"><img src="http://www.tutorials.de/forum/'. $files[ $rand5 ] .'" width="32" height="32" border="0" /></a>
<a onclick="showpic(\'thumb_'. $files[ $rand6 ] .'\');"><img src="http://www.tutorials.de/forum/'. $files[ $rand6 ] .'" width="32" height="32" border="0" /></a>
';