Oh, irgendwie ging mein Post verloren der die Lösung beschrieb. Also hier mein fertiges Script:
$seite = $_GET['seite']; //seitennummer aus url übernehmen
if (!isset($seite)) {$seite = "1";} //wenn seitennummer nicht übergeben
$startbild = "1";
if ($seite == 2) { $startbild = "25"; }
if ($seite == 3) { $startbild = "49"; }
if ($seite == 4) { $startbild = "73"; }
$count = 0;
$zeilensprung = 1;
$bilder = glob( "projekte/thumbs/*.jpg" );
natsort( $bilder );
foreach ($bilder as $bild) {
if ($count < $startbild) {
$count++;
}
if ($count >=$startbild) {
$bild = array_pop( explode( "/", $bild ) );
$name = explode(".",$bild);
echo '<a href="projekt.php?projekt=' .urlencode( $name[0] ). '" title="" class="thumb"><img src="projekte/thumbs/' .$bild. '" /></a>';
echo ($zeilensprung % 8 == 0) ? "<br />\n" : "";
$zeilensprung++;
if ($zeilensprung == 25) {
break;
}
}
}
funktioniert wunderbar. Bin glücklich. Danke an alle :-)