uitgelezen dir sorteren
Code (php)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
if (isset($_GET['dir'])){
error_reporting(E_ALL);
// change
$map = $_GET['dir']; // dir for images
$col = 3; // collumns per page
$row = 4; // rows per page
$img = array('jpg'); // possible extentions
$tab = array(); // empty
if(isset($_GET['actie'])){
$_GET['actie'] = $_GET['actie'];
}
else{
$_GET['actie'] = '';
}
if(isset($_GET['dir'])){
$_GET['dir'] = $_GET['dir'];
}
else{
$_GET['dir'] = '';
}
$dir = $_GET['dir'];
if(!isset($_GET['p'])){
$p = 1;
}
else{
$p = $_GET['p'];
}
function img_resize($a, $b = '', $c = ''){
if(file_exists($a)){
if($b == '' || !is_numeric($b)){
$b = 105;
}
if($c == '' || !is_numeric($c)){
$c = 100;
}
$f = getimagesize($a);
$g = array();
if($f[1] > $c || $f[0] > $b){
if($f[0] > $c){
$d = $f[0] - $b;
$e = $d / $f[0];
$g[0] = $b;
$g[1] = $f[1] - ($f[1] * $e);
}
elseif($f[1] > $c){
$d = $f[1] - $c;
$e = $d / $f[1];
$g[0] = $f[0] - ($f[0] * $e);
$g[1] = $c;
}
else{
$g[1] = $c;
$g[0] = $b;
}
}
else{
$g[0] = $f[0];
$g[2] = $f[1];
}
return 'src="'.$a.'" height="'.$g[0].'"';
}
else{
return false;
}
}
function dir_array($a, $b){
$g = array();
if($c = opendir($a)){
while(false !== ($d = readdir($c))){
if($d != "." && $d != ".."){
$e = explode('.', $d);
$f = $e[count($e)-1];
if(is_dir($a."/".$d)){
$g = array_merge($g, dir_array($a."/".$d, $b));
}
elseif(in_array(strtolower($f), $b)){
$g[] = $a."/".$d;
}
}
}
closedir($c);
}
return $g;
}
function map_array($a){
$g = array();
if($c = opendir($a)){
while(false !== ($d = readdir($c))){
if($d != "." && $d != ".."){
if(is_dir($a."/".$d)){
$g[$d] = $a."/".$d;
}
}
}
closedir($c);
}
return $g;
}
function sort_table($a, $b, $e){
global $p;
$f = $b*$e;
$f = count($a)/$f;
$f = ceil($f);
if(isset($_GET['actie'])){
$actie = '&actie='.$_GET['actie'];
}
else{
$actie = '';
}
if($_GET['dir'] != ''){
$actie .= '&dir='.$_GET['dir'];
}
if($b > count($a)){
$b = count($a);
}
if($p < 1 || $p > $f){
$p = 1;
}
$c = '<table cellspacing="0" width="509" cellpadding="0">
</table><table width="509" cellpadding="0" cellspacing="0" border="0">';
$d = 1;
for($i = $b*$e*($p-1); $i < ($b*$e*$p); $i++){
if($d == 1){
$c .= '<tr align="center" valign="middle">';
}
$c .= '<td width="153" height="115">';
if(isset($a[$i])){
$c .= $a[$i];
}
// else{
// $c .= ' ';
// }
$c .= '</td>';
if($d == $b){
$d = 1;
$c .= '</tr>';
}
else{
$d++;
}
}
$c .= '<tr align="center" height="50" valign="middle"><td colspan="'.$b.'">';
if($p > 1){
$c .= '<a href="?id=fotos&actie='.$_GET['actie'].'&p='.($p-1).'&dir='.$_GET['dir'].'&titel='.$_GET['titel'].'">< Vorige</a> ';
}
else{
$c .= '< Vorige ';
}
if($p < $f){
$c .= '- <a href="?id=fotos&actie='.$_GET['actie'].'&p='.($p+1).'&dir='.$_GET['dir'].'&titel='.$_GET['titel'].'">Volgende ></a>';
}
else{
$c .= '- Volgende >';
}
if($_GET['actie'] == 2){
$c .= '<br /><a href="?id=fotos&dir='.$_GET['dir'].'&titel='.$_GET['titel'].'">Overzicht</a>';
}
$c .= '</td></tr>';
$c .= '</table>';
return $c;
}
?>
if (isset($_GET['dir'])){
error_reporting(E_ALL);
// change
$map = $_GET['dir']; // dir for images
$col = 3; // collumns per page
$row = 4; // rows per page
$img = array('jpg'); // possible extentions
$tab = array(); // empty
if(isset($_GET['actie'])){
$_GET['actie'] = $_GET['actie'];
}
else{
$_GET['actie'] = '';
}
if(isset($_GET['dir'])){
$_GET['dir'] = $_GET['dir'];
}
else{
$_GET['dir'] = '';
}
$dir = $_GET['dir'];
if(!isset($_GET['p'])){
$p = 1;
}
else{
$p = $_GET['p'];
}
function img_resize($a, $b = '', $c = ''){
if(file_exists($a)){
if($b == '' || !is_numeric($b)){
$b = 105;
}
if($c == '' || !is_numeric($c)){
$c = 100;
}
$f = getimagesize($a);
$g = array();
if($f[1] > $c || $f[0] > $b){
if($f[0] > $c){
$d = $f[0] - $b;
$e = $d / $f[0];
$g[0] = $b;
$g[1] = $f[1] - ($f[1] * $e);
}
elseif($f[1] > $c){
$d = $f[1] - $c;
$e = $d / $f[1];
$g[0] = $f[0] - ($f[0] * $e);
$g[1] = $c;
}
else{
$g[1] = $c;
$g[0] = $b;
}
}
else{
$g[0] = $f[0];
$g[2] = $f[1];
}
return 'src="'.$a.'" height="'.$g[0].'"';
}
else{
return false;
}
}
function dir_array($a, $b){
$g = array();
if($c = opendir($a)){
while(false !== ($d = readdir($c))){
if($d != "." && $d != ".."){
$e = explode('.', $d);
$f = $e[count($e)-1];
if(is_dir($a."/".$d)){
$g = array_merge($g, dir_array($a."/".$d, $b));
}
elseif(in_array(strtolower($f), $b)){
$g[] = $a."/".$d;
}
}
}
closedir($c);
}
return $g;
}
function map_array($a){
$g = array();
if($c = opendir($a)){
while(false !== ($d = readdir($c))){
if($d != "." && $d != ".."){
if(is_dir($a."/".$d)){
$g[$d] = $a."/".$d;
}
}
}
closedir($c);
}
return $g;
}
function sort_table($a, $b, $e){
global $p;
$f = $b*$e;
$f = count($a)/$f;
$f = ceil($f);
if(isset($_GET['actie'])){
$actie = '&actie='.$_GET['actie'];
}
else{
$actie = '';
}
if($_GET['dir'] != ''){
$actie .= '&dir='.$_GET['dir'];
}
if($b > count($a)){
$b = count($a);
}
if($p < 1 || $p > $f){
$p = 1;
}
$c = '<table cellspacing="0" width="509" cellpadding="0">
</table><table width="509" cellpadding="0" cellspacing="0" border="0">';
$d = 1;
for($i = $b*$e*($p-1); $i < ($b*$e*$p); $i++){
if($d == 1){
$c .= '<tr align="center" valign="middle">';
}
$c .= '<td width="153" height="115">';
if(isset($a[$i])){
$c .= $a[$i];
}
// else{
// $c .= ' ';
// }
$c .= '</td>';
if($d == $b){
$d = 1;
$c .= '</tr>';
}
else{
$d++;
}
}
$c .= '<tr align="center" height="50" valign="middle"><td colspan="'.$b.'">';
if($p > 1){
$c .= '<a href="?id=fotos&actie='.$_GET['actie'].'&p='.($p-1).'&dir='.$_GET['dir'].'&titel='.$_GET['titel'].'">< Vorige</a> ';
}
else{
$c .= '< Vorige ';
}
if($p < $f){
$c .= '- <a href="?id=fotos&actie='.$_GET['actie'].'&p='.($p+1).'&dir='.$_GET['dir'].'&titel='.$_GET['titel'].'">Volgende ></a>';
}
else{
$c .= '- Volgende >';
}
if($_GET['actie'] == 2){
$c .= '<br /><a href="?id=fotos&dir='.$_GET['dir'].'&titel='.$_GET['titel'].'">Overzicht</a>';
}
$c .= '</td></tr>';
$c .= '</table>';
return $c;
}
?>
odit had ik met een beetje googlen idd ook gevonden. Ik heb alleen geen idee waar in de code ik dit moet plakken
Je hebt een functie dir_array die een array $g retourneert. Voordat je die $g retourneert moet je die sort er op los laten. Heb je het script wel zelf gemaakt eigenlijk?
nee ik heb het script van een vriend gekregen en zelf aangepast. Maar het werkt nu. Bedankt voor de snelle hulp
Oké, graag gedaan.
Code (php)
regel 2 is natuurlijk onzin $_GET['actie'] = $_GET['actie'];
Dit kan veel makkelijker met !
Mijn stukje code doet hetzelfde als de jouwe
Of ik moet iets over het hoofd zien
Gewijzigd op 01/01/1970 01:00:00 door Klaasjan Boven