Line 20... |
Line 20... |
20 |
|
20 |
|
21 |
|
21 |
|
22 |
|
22 |
|
23 |
$adresar = opendir($path.$folder); |
23 |
$adresar = opendir($path.$folder); |
24 |
while ($soubor = readdir($adresar)){ |
24 |
while ($soubor = readdir($adresar)){ |
25 |
if ((Is_Dir($path.$folder."/".$soubor)) && (substr($soubor,0,1) <> ".")) { |
25 |
if ((Is_Dir($path.$folder."/".$soubor)) && (substr($soubor,0,1) <> ".") && (substr($soubor,0,1) <> "!")) { |
26 |
|
26 |
|
27 |
$img = $soubor."_Small.jpg"; |
27 |
$img = $soubor."_Small.jpg"; |
28 |
|
28 |
|
29 |
|
29 |
|
30 |
?> |
30 |
?> |
Line 33... |
Line 33... |
33 |
<?php |
33 |
<?php |
34 |
|
34 |
|
35 |
if (file_exists($path.$folder."/".$soubor."/CAM_AMA")) { |
35 |
if (file_exists($path.$folder."/".$soubor."/CAM_AMA")) { |
36 |
?> |
36 |
?> |
37 |
|
37 |
|
38 |
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$img; ?>"></td></tr> |
38 |
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$img; ?>" width="50"></td></tr> |
39 |
<tr><td><?php include $path.$folder.'/'.$soubor."/".$info; ?></td></tr> |
39 |
<tr><td><?php include $path.$folder.'/'.$soubor."/".$info; ?></td></tr> |
40 |
|
40 |
|
41 |
|
41 |
|
42 |
<?php |
42 |
<?php |
43 |
} else { |
43 |
} else { |
Line 46... |
Line 46... |
46 |
<?php |
46 |
<?php |
47 |
|
47 |
|
48 |
|
48 |
|
49 |
$adresar1 = opendir($path.$folder."/".$soubor); |
49 |
$adresar1 = opendir($path.$folder."/".$soubor); |
50 |
while ($soubor1 = readdir($adresar1)){ |
50 |
while ($soubor1 = readdir($adresar1)){ |
51 |
if ((Is_Dir($path.$folder."/".$soubor."/".$soubor1)) && (substr($soubor1,0,1) <> ".")) { |
51 |
if ((Is_Dir($path.$folder."/".$soubor."/".$soubor1)) && (substr($soubor1,0,1) <> ".") && (substr($soubor1,0,1) <> "!")) { |
52 |
|
52 |
|
53 |
$img = $soubor1."_Small.jpg"; |
53 |
$img = $soubor1."_Small.jpg"; |
54 |
?> |
54 |
?> |
55 |
<table border=0> |
55 |
<table border=0> |
56 |
<tr><td><?php echo $soubor1; ?></td></tr> |
56 |
<tr><td><?php echo $soubor1; ?></td></tr> |
57 |
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$soubor1."/".$img; ?>"></td></tr> |
57 |
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$soubor1."/".$img; ?>" width="50"></td></tr> |
58 |
<tr><td><?php include $path.$folder.'/'.$soubor."/".$soubor1."/".$info; ?></td></tr> |
58 |
<tr><td><?php include $path.$folder.'/'.$soubor."/".$soubor1."/".$info; ?></td></tr> |
59 |
</table> |
59 |
</table> |
60 |
</td></tr> |
60 |
</td></tr> |
61 |
<?php |
61 |
<?php |
62 |
}} |
62 |
}} |