Probleme mit Seitenaufteilung

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Probleme mit Seitenaufteilung

    Hallo zusamen
    das script funktioniert gut, bis auf die blätterfunktion.
    Alle Bilder werden aus dem verzeichnis ausgelesen (ca. 40 Bilder ) möchte aber nur 16 bilder haben dann die Blätterfunktion mit ( zurüch | 1 2 3 4 5 | Nächste. Nur diese wir nicht aktiviert.
    Wer kann mir weiterhelfen. Finde die lösung einfach nicht

    Hier ist das script:

    PHP-Code:
    <?php 
    $url 
    "/card.php?action=card&kat=$kat&bild="
    $subdir "./post/img/$kat/"
    $verzeichnis opendir("./".$subdir.$gal); 
    while(
    $img readdir($verzeichnis)) { 
        
    $parts explode("."$img); 
        if(((
    $parts[1] == "gif") OR ($parts[1] == "jpg") OR ($parts[1] == "png")) AND (strtolower($parts[0]{0}))){ //anstatt $parts[0]{0} kannst du auch substr($parts[0], 0, 1) verwenden. 
        
    $images[] = $img
        }}
    $entrys count($file) - 1
    $perpage 12;                        //Eintr&auml;ge pro Seite 

    $pages ceil($entrys $perpage); 

    if (
    $page == 0): $page 1; endif; 
    $globalcounter = ($page $perpage) - $perpage

    $counter 1

    while(
    $counter <= 12 && $globalcounter <= $entrys): 

            include(
    $subdir."/".$file[$globalcounter]); 



            
    $counter++; 
            
    $globalcounter++; 
    endwhile; 
    closedir($verzeichnis); 
    if (
    count($images) > 0) { 
        foreach (
    $images as $image) { 
            print 
    " <a href=\"".$url.$image."\" 
    onmouseover=\"self.status='"
    .$image."'; return true;\" 
    onmouseout=\"self.status=''; return true;\">"

            print 
    "<img width=\"140\" heigh=\"140\" src=\"./".$subdir.$gal."".$image."\" alt=\"$image\" 
    border=\"0\"></a>"

        } 
    } else { 
        print 
    "<b> Sorry, in dieser Kategorie sind noch keine Bilder<b>\n"

    if (
    $page 1): 
        
    $lastpage $page -1
        echo 
    "<a href = \"".$PHP_SELF."?page=".$lastpage."\">Zurück</a>|"
    endif; 

    for(
    $i 1$i <= $pages$i++): 
        if(
    $i != $page): 
            echo 
    "&nbsp;<a href = \"".$PHP_SELF."?page=".$i."\">".$i."</a>"
        else: 
            echo 
    "&nbsp;<b>".$i."</b>"
        endif; 
    endfor; 

    if (
    $pages && $page $pages): 
        
    $nextpage $page 1
        echo 
    "&nbsp;|<a href = \"".$PHP_SELF."?page=".$nextpage."\">Nächste</a>"
    endif; 

    ?>
    Wäre dankbar für jede Hilfe
Lädt...
X