Bo'limlar Har-xil JohnCMS uchun Galleryadagi rasmlarni bosh sahifaga chiqarish

JohnCMS uchun Galleryadagi rasmlarni bosh sahifaga chiqarish

Galleryadagi rasmlarni bosh sahifaga chiqarish !
  1. echo'<div class="phdr"><b>Последние картинки из Галереи</b></div><div class="list1">';
  2. $limit_gallery='5';// количество
  3. $req_gallery= mysql_query("SELECT `id`, `text`, `name` FROM `gallery` WHERE `type` = 'ft' ORDER BY `time` DESC LIMIT $limit_gallery ");
  4. while($res_gallery= mysql_fetch_array($req_gallery)){
  5. echo'<a href="/gallery/index.php?id='.$res_gallery['id'].'" title="'.$res_gallery['text'].'"><img src="/gallery/foto/'.$res_gallery['name'].'" height="100px" width="100px"/></a> ';
  6. }
  7. echo'</div>';