opentable("Wszystkie Galerie";); echo "
OSTATNIO DODANE DO WASZYCH GALERII
"; $result3 = dbquery("SELECT * FROM ".$db_prefix."ug_photos ORDER BY photo_id DESC LIMIT 0,4";); if (dbrows($result3) != 0) { while($data3 = dbarray($result3)) { echo " "; } echo "


"; } else { echo $locale['004']; } //Ostatnie foto echo ""; $result2 = dbquery("SELECT * FROM ".$db_prefix."ug_photo_albums ORDER BY album_title ASC LIMIT 0,50";); if (dbrows($result2) != 0) { while($data2 = dbarray($result2)) { $itemsubject = trimlink($data2['album_title'], 30); echo "
$itemsubject".$data2[album_info]."

"; } } else { echo "
Brak Galerii
\n"; } echo "
"; //Komentarze //Statystyki $sum = dbquery("SELECT SUM(photo_views) FROM ".$db_prefix."ug_photos";); $i_alt = dbresult($sum,0); echo "
STATYSTYKI"; echo "
Wasze obrazy były ogl±dane ".$i_alt." razy."; echo "
"; closetable();