22,7 → 22,7 |
|
$adresar = opendir($path.$folder); |
while ($soubor = readdir($adresar)){ |
if ((Is_Dir($path.$folder."/".$soubor)) && (substr($soubor,0,1) <> ".")) { |
if ((Is_Dir($path.$folder."/".$soubor)) && (substr($soubor,0,1) <> ".") && (substr($soubor,0,1) <> "!")) { |
|
$img = $soubor."_Small.jpg"; |
|
35,7 → 35,7 |
if (file_exists($path.$folder."/".$soubor."/CAM_AMA")) { |
?> |
|
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$img; ?>"></td></tr> |
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$img; ?>" width="50"></td></tr> |
<tr><td><?php include $path.$folder.'/'.$soubor."/".$info; ?></td></tr> |
|
|
48,13 → 48,13 |
|
$adresar1 = opendir($path.$folder."/".$soubor); |
while ($soubor1 = readdir($adresar1)){ |
if ((Is_Dir($path.$folder."/".$soubor."/".$soubor1)) && (substr($soubor1,0,1) <> ".")) { |
if ((Is_Dir($path.$folder."/".$soubor."/".$soubor1)) && (substr($soubor1,0,1) <> ".") && (substr($soubor1,0,1) <> "!")) { |
|
$img = $soubor1."_Small.jpg"; |
?> |
<table border=0> |
<tr><td><?php echo $soubor1; ?></td></tr> |
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$soubor1."/".$img; ?>"></td></tr> |
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$soubor1."/".$img; ?>" width="50"></td></tr> |
<tr><td><?php include $path.$folder.'/'.$soubor."/".$soubor1."/".$info; ?></td></tr> |
</table> |
</td></tr> |