CODE
<?php
$folder = 'gallery/thumbs';
$handle = opendir($folder);
$i = 0;
while ($file = readdir($handle))
{
if (($file != '.') && ($file != '..'))
{
$i++;
$array[$i] = $file;
}
}
$count = count($array);
$wylicz = 0;
while ($wylicz < $count) {
$wylicz++;
$zdjecie = $array[$wylicz];
$zdjecie = substr($zdjecie, 0, 7);
echo '<a class="galeria" href="gallery/images/'.$zdjecie.'.jpg" target="_blank" >
<img src="gallery/thumbs/'.$zdjecie.'.png" border="0"></a>';
}
?>
$folder = 'gallery/thumbs';
$handle = opendir($folder);
$i = 0;
while ($file = readdir($handle))
{
if (($file != '.') && ($file != '..'))
{
$i++;
$array[$i] = $file;
}
}
$count = count($array);
$wylicz = 0;
while ($wylicz < $count) {
$wylicz++;
$zdjecie = $array[$wylicz];
$zdjecie = substr($zdjecie, 0, 7);
echo '<a class="galeria" href="gallery/images/'.$zdjecie.'.jpg" target="_blank" >
<img src="gallery/thumbs/'.$zdjecie.'.png" border="0"></a>';
}
?>