Xeroooo: Fotogalleryseiten einführen

Beitrag lesen

Das hier hab ich so, nur leider funktioniert da irgendwas nich

<?php

$anzahl=0;
if(!isset($_REQUEST['seite'])) {
  $seite = 1;
}else{
  $seite = $_REQUEST['seite'];
}

$start = 1+($seite-1)*10
$stop = $start+10;

$handle = opendir('.');
while ($file = readdir ($handle)) {
  if($file != "." && $file != "..") {
    if(!is_dir("./".$file) && $file != "index.php" && $file != "Thumbs.db") {
      $anzahl++;
      $size = GetImageSize ("$file");
      echo "<fieldset style="border-color:#FFFFFF"><legend><font color="#FFFFFF"><b>| $anzahl | </b></font></legend><table border="0" cellpadding="10"><tr><td width="150">";
      if($anzahl > $start && $anzahl <$stop) {
        if($size[0]>$size[1]) {
          echo "<img src="$file" width="100" height="74"></td><td width="150"><center><br><b>$file<br>$size[0] px * $size[1] px<br><a href="Javascript:FotoWindow('$file','600','448')"><font color="#FFFFFF" size="10pt">Bild anzeigen</font></a></b><br><br>";
        }else{
          echo "<img src="$file" width="74" height="100"></td><td width="150"><center><br><b>$file<br>$size[0] px * $size[1] px<br><a href="Javascript:FotoWindow('$file','448','600')"><font color="#FFFFFF" size="10pt">Bild anzeigen</font></a></b><br><br>";
        }
      }
      echo "</center></td></tr></table></fieldset><div align="right">&gt; <a href="../../fullindex.php"><font color="#FFFFFF" size="10pt">zurück</font></a></div><br>";
    }
  }
}
closedir($handle);
$seiten = round(($anzahl+4)/10);
for($i=1;$i<=$seiten;$i++) {
  echo "<a href="index.php?seite=$i">$i</a> ";
}
?>