Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Jaunelio Klausimai :)

Parašė edeni· 2010 Sau. 3 19:01:07
#164

openside_panel($locale['001']);

$result=dbquery(
"SELECT ta.album_id,album_title,photo_id,photo_title,photo_thumb1 FROM ".DB_PREFIX."photo_albums ta ".
"JOIN ".DB_PREFIX."photos USING (album_id) ORDER BY photo_id DESC LIMIT 0,2");

if (dbrows($result) != 0) {
   while($data = dbarray($result)) {
      $itemdescription = trimlink($data['photo_title'], 23);
      echo "<center><td style='padding-left: 80px;' width='120' heigth='120'><a href='".BASEDIR."photogallery.php?photo_id=".$data['photo_id']."' title='".$data['photo_title']."'>
<img border='0' src='".BASEDIR."images/photoalbum/album_".$data['album_id']."/".$data['photo_thumb1']."' width='120' heigth='120' title='".$data['photo_title']."' alt='".$data['photo_title']."'/></a><br/>
<b><center><a href='".BASEDIR."photogallery.php?photo_id=".$data['photo_id']."'>$itemdescription</a></b>
<br/><a href='".BASEDIR."photogallery.php?album_id=".$data['album_id']."' class='gallery' title='Albumas: ".$data['album_title']."'>
".$data['album_title']."</a></center></td></center>\n";
   }
}

closeside_panel();