1
0
PSSGliwice/tgalerie.htm
2020-12-04 22:43:42 +01:00

18 lines
575 B
HTML

<div class="row">
<?
$galerie=file('galeria/galerie.txt');
while(list($key,$fil)=each($galerie))
{
list($gal, $opis, $zdjecie) = explode("#",$fil);
{
$g_opis=trim($opis);
echo "<div class=\"col-lg-4\"><a href=\"index.php?tytul=galeria&f_gal=$gal\"><img class=\"img-circle\" src=\"thumb.php?url=$zdjecie&pheight=140\" alt=\"$g_opis\" width=\"140\" height=\"140\">";
echo "<p><br>$g_opis</p></a><p><a class=\"btn btn-default\" href=\"index.php?tytul=galeria&f_gal=$gal\" role=\"button\">Zobacz &raquo;</a></p></div>";
}
}
?>
</div><!-- /.row -->