openside("Statystyki");
echo '
';
$result = dbquery("SELECT * FROM ".$db_prefix."photos ORDER BY photo_id DESC LIMIT 1");
echo 'Najnowsza fotka:
';
$rows = dbrows($result);
if ($rows != 0) {
while ($row = mysql_fetch_array($result))
{
echo ''.$row['photo_filename'].'
';
}
}
else {
echo 'Brak danych do wyświetlenia w statystykach'; }
echo '
';
$result = dbquery("SELECT * FROM ".$db_prefix."photos ORDER BY photo_views DESC LIMIT 1");
echo 'Najpopularniejsza fotka
';
$rows = dbrows($result);
if ($rows != 0) {
while ($row = mysql_fetch_array($result))
{
echo ''.$row['photo_filename'].' ('.$row['photo_views'].')
';
}
}
else {
echo 'Brak danych do wyświetlenia w statystykach'; }
echo '';
closeside();