Falloutboy6
Mitglied
Hi,
ich habe folgendes Script. Hier habe ich das Problem, dass er das erste Bild (da er ja alphabetisch sortiert) also zb. a.jpg immer weglässt. Das zweite geht dann aber immer dass, dass als erstes ausgelesen wird wird nicht angezeigt. Woran könnte das liegen?
Bitte um Hilfe. Danke
ich habe folgendes Script. Hier habe ich das Problem, dass er das erste Bild (da er ja alphabetisch sortiert) also zb. a.jpg immer weglässt. Das zweite geht dann aber immer dass, dass als erstes ausgelesen wird wird nicht angezeigt. Woran könnte das liegen?
Bitte um Hilfe. Danke
PHP:
<?
echo "<table align=\"center\" width=\"150\" height=\"100\" border=\"0\" cellpadding=\"3\" cellspacing=\"3\">"
."<tr>";
$the_file_array = Array();
$the_folder_array = Array();
$verzname="images/galerie/thumb";
$handle = opendir($verzname);
while($file = readdir($handle))
{
if ($file != "." && $file != ".." && $file != "index.php") {
$the_file_array[] = $file; } else if (filetype($file) == "dir") {$the_folder_array[] = $file;
}
}
closedir($handle);
sort ($the_file_array);
reset ($the_file_array);
next($the_file_array);
sort ($the_folder_array);
reset ($the_folder_array);
next($the_folder_array);
while (list ($key, $val) = each ($the_file_array)) {
if (($val != ".") && (!fnmatch("*.htm*", $val)) && (!fnmatch("*.php*", $val))){
if ((fnmatch("*~~*", $val)) || (fnmatch("~cheat_sux^hi", $val))) {
// CASE: An outcommented file. - Syn: "~<filename>" - Exp: "~nottobeseen.txt"
echo "** SECRET FILE **<br>";
}else{
echo "<td align=\"center\" width=\"300\">"
."<a href=\"images/auslesen.php?Bild=$key\" onclick=\"return popup(this,134,88)\"><img src=".$verzname."/".$val." width=\"120px\" border=\"0\"></a>\n"
."</td>".substr_replace($datei, "", +50)."\n";
$i++;
}
if($i%5==0 && $i!=1) {
echo "</tr><tr>\n";
}
}
}
echo "</tr></table><br>";
?>