/Web/modules.php
33,13 → 33,14
<?php
 
if (file_exists($path.$folder."/".$soubor."/CAM_AMA")) {
?>
 
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$img; ?>" width="150"></td></tr>
<tr><td><?php include $path.$folder.'/'.$soubor."/".$info; ?></td></tr>
if (file_exists($path.$folder.'/'.$soubor."/".$img)) { echo "<tr><td><img src=\"".$www.$folder.'/'.$soubor."/".$img."\" width=\"150\"></td></tr>\n" }
if (file_exists($path.$folder.'/'.$soubor."/".$info)) {
echo "<tr><td>\n"
include $path.$folder.'/'.$soubor."/".$info;
echo "\n</td></tr>\n";
}
 
 
<?php
} else {
?>
<tr><td>
54,8 → 55,18
?>
<table border=0>
<tr><td><?php echo $soubor1; ?></td></tr>
<?php
if (file_exists($path.$folder.'/'.$soubor."/".$soubor1."/".$img)) {
?>
<tr><td><img src="<?php echo $www.$folder.'/'.$soubor."/".$soubor1."/".$img; ?>" width="150"></td></tr>
<tr><td><?php include $path.$folder.'/'.$soubor."/".$soubor1."/".$info; ?></td></tr>
<?php
}
if (file_exists($path.$folder.'/'.$soubor."/".$soubor1."/".$info)) {
echo "<tr><td>\n";
include $path.$folder.'/'.$soubor."/".$soubor1."/".$info;
echo "\n</td></tr>\n";
}
?>
</table>
</td></tr>
<?php