afbeeldingen-uit-map-tonen

Gesponsorde koppelingen

PHP script bestanden

  1. afbeeldingen-uit-map-tonen

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php

$a
= '??'; //aantal plaatjes op 1 pagina
$locatie = '??'; //map van afbeeldingen
$width = '??'; //breedte van de plaatjes


//hieronder hoeft niks veranderd te worden

if (!isset($_GET['pagina'])) { $pagina = 1; } else { $pagina = $_GET['pagina']; }
$dir = opendir($locatie);
$nr = '1';
// Haal de gegevens uit dir
while (false !== ($file = readdir($dir))) {
      if (($file !== ".") and ($file !== "..")) {
         list($filename, $ext) = explode(".", $file);
         list($main, $sub, $include) = explode("/", $PHP_SELF);
         $files[$nr] = $file;
         $nr++;
      }
}

$a0 = count($files);

$a1 = ($a0/$a);
$a2 = round($a1);
if ($a1 > $a2) {
   $a2++;
}

$i = '1';
while ($i != ($a2 + 1)) {
      if ($pagina == $i) {
         $j = (($a * $i)-$a);
         $afb = ($j + 1);
         while ($j != ($a * $i)) {
               if  ($afb > $a0) {
               $j = ($a * $i);
               }

               else {
               echo "<a href=\"$locatie/$files[$afb]\">
                        <img src=\"$locatie/files[$afb]\" width=\"$width\"b order=O></a> "
;
               $afb++;
               $j++;
               }
         }

//pagina nummers met links
      $l = '1';
      echo "<br><br>";
      while ($l != ($a2 + 1)){
            if ($l == $pagina){
            echo "<b>[$l]</b> ";
            }

            else {
            echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?pagina=$l\">[$l]</a> ";
            }

            $l++;

      }

      }

      $i++;
}


?>





---vervangen van pagina nummers door volgende en vorige knoppen---

vervang dit:
//pagina nummers met links
      $l = '1';
      echo "<br><br>";
      while ($l != ($a2 + 1)){
            if ($l == $pagina){
            echo "<b>[$l]</b> ";
            }
            else {
            echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?pagina=$l\">[$l]</a> ";
            }
            $l++;

      }
door:
      echo"<br><br>";
      if($pagina == 1){
                 $l0 = ($pagina+1);
                 echo"<a href=\"" . $_SERVER['PHP_SELF'] . "?pagina=$l0\">volgende >></a>";
      }
      elseif($pagina == $a2){
                 $l1 = ($pagina-1);
                 echo"<a href=\"" . $_SERVER['PHP_SELF'] . "?pagina=$l1\"><< vorige </a>";
      }
      else{
                 $l2 = ($pagina-1);
                 $l3 = ($pagina+1);
                 echo"<a href=\"" . $_SERVER['PHP_SELF'] . "?pagina=$l2\"> &nbsp&nbsp&nbsp&nbsp<< vorige </a>| ";
                 echo"<a href=\"" . $_SERVER['PHP_SELF'] . "?pagina=$l3\">volgende >></a>";
      }
?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.