Hallo, ich bin immernoch bei meinem Galleryscript dran, funktioniert alles auch gut, ausser die Blätterfunktion bereitet mir noch mühe...weiss nicht was hier falsch ist:
Weiss jemand was hier falsch ist?
Wenn ja, dann bitte hilf mir ...Danke!
Gruss ignition
PHP-Code:
<?
include ("gallery/comments.ig");
$handle = opendir ('gallery/');
while ($file = readdir ($handle)) {
if ($file != "." && $file != ".." && $file != "temp" && $file != "comments.ig") {
$files .= "|$file";
}
}
closedir($handle);
$filearray = explode ("|", $files);
$counter = count($filearray);
sort ($filearray);
$counter = $counter - 1;
if ($counter == "0")
{ echo "Noch keine Bilder online"; }
$gesamt = count($filearray); //Gesamtzahl aller vorhandenen Bilder ermitteln
$proseite = 3;
$seite = ((!$_GET['seite']) || ($_GET['seite'] < 1)) ? 1 : $_GET['seite'];
$min = ($_GET['seite'] - 1) * ($proseite+1);
$max = $min + $proseite;
for ($x = $min; $x <= $max; $x++) {
$file3 = strtolower($filearray[$x]);
$kommentar = str_replace(".","",$file3);
$infos = @getimagesize("gallery/$file3");
$iWidth = $infos[0] + 40;
$iHeight = $infos[1] + 70;
if(!file_exists("gallery/temp/$file3"))
{
$file3 = "nopic.jpg";
}
$zahl1 = $x/4; // Nach 4 Bilder Zeilenumbruch machen
if(!is_integer($zahl1))
{
echo "<font class=\"stn\"><a href=\"#\" onClick=\"window.open('anzeigen.php?pic=$file3', 'fenster','toolbar=no,status=no,menubar=no,scrollbars=yes,width=$iWidth,height=$iHeight')\"><img src=\"gallery/temp/$file3\" border=\"0\" alt=\"${'comment'.$kommentar}\"></a> ";}
else { echo "<font class=\"stn\"><a href=\"#\" onClick=\"window.open('anzeigen.php?pic=$file3', 'fenster','toolbar=no,status=no,menubar=no,scrollbars=yes,width=$iWidth,height=$iHeight')\"><img src=\"gallery/temp/$file3\" border=\"0\" alt=\"${'comment'.$kommentar}\"></a><br>"; }
}
$zahl1 = "0";
if ($gesamt > $proseite) {
echo 'Seite: ';
$seiten_gesamt = ceil($gesamt / $proseite);
for ($y = 1; $y <= $seiten_gesamt; $y++) {
if ($y == $seite) {
echo '<b>'.$seite.'</b> ';
} else {
echo '<a href="'.$_SERVER['PHP_SELF'].'?seite='.$y.'">'.$y.'</a>';
}
}
}
?>
Weiss jemand was hier falsch ist?
Wenn ja, dann bitte hilf mir ...Danke!
Gruss ignition
Kommentar