Witam.
Sam wyglad ostatniej dodanej fotki jest dziwny bez zadnych napisow, itp...
Dodalem linijke i pod zdjecie podaje ile jest fotel w fotogalerii.
Zwroccie uwage na to ze nie ilosci po photo_id - bo to jest bledne, jezeli usuniety ktores fotki z galeri powstanie nam dziura :)
Wiec lepiej to zrobic po ilosci wierszy w fusion_photos:
<?php
/*--------------------------------------------+
| PHP-Fusion 5 - Content Management System |
|---------------------------------------------|
| author: Nick Jones (Digitanium) 2002-2005 |
| web: http://www.php-fusion.co.uk |
| email: |
|---------------------------------------------|
| Released under the terms and conditions of |
| the GNU General Public License (Version 2) |
+--------------------------------------------*/
//created by Paulsson http://www.php-fusion.se
@include FUSION_INFUSIONS."latest_photos_panel/languages/".$settings['language'].".php";
@include FUSION_INFUSIONS."latest_photos_panel/languages/English.php";
if (!defined("IN_FUSION")) { header("Location:../../index.php"); exit; }
openside(LPP_100);
$result = dbquery("SELECT * FROM ".$fusion_prefix."photos ORDER BY photo_id DESC LIMIT 0,1");
if (dbrows($result) != 0) {
while($data = dbarray($result)) {
$itemsubject = trimlink($data['photo_id'], 23);
$itemdescription = trimlink($data['photo_title'], 23);
echo "<a href='".FUSION_BASE."photogallery.php?photo=".$data['photo_id']."' title='".$data['photo_title']."' class='side'><center><img src='".FUSION_BASE."fusion_images/photoalbum/".$data['photo_id']."t.jpg' border='0'><br /> $itemdescription <br /> </center></a>\n";
}
/********* Dodano przez SQ9CYG**********/
/**************************************/
$result = dbquery("SELECT * FROM ".$fusion_prefix."photos ORDER BY photo_id DESC");
$rowsnum = dbrows($result);
echo "<center>Ilo¶ć zdjęć w galerii: ".$rowsnum."<br></center>";
/**************************************/
/*******Koniec modyfikacji ***********/
} else {
echo "<center>".LAN_04."</center>\n";
}
closeside();
?>
Wylaczaj emotki wstawiajac kod itp. Wylaczylem/Pieka
Edytowane przez Pieka dnia 09.09.2005 21:43:44
Guru
|