ACC SHELL
<div id="services" class="content-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Fotogalerie</h2>
<script type="text/javascript" src="/yoxview/yoxview-init.js"></script>
<?php
if ($handlex = opendir('ulehla')) {
while (false !== ($entryx = readdir($handlex))) {
$outputx = $entryx;
if($outputx == ".." OR $outputx == "."){
}
else{
$arrayx[] = $entryx;
}
}
closedir($handlex);
}
echo'
<div class="yoxview">
';
foreach($arrayx AS $valuex){
echo'
<div style="width: 20%; margin: 2.5%; height: 150px; border: 1px solid black; float: left;">
<a href="/ulehla/'.$valuex.'">
<img src="/ulehla/'.$valuex.'" style="width: 100%; height: 148px;">
</a>
</div>
';
}
echo'
</div>
';
?>
</div>
</div>
</div>
</div>
ACC SHELL 2018