openside("Najnowsze strony"); $result = dbquery("SELECT * FROM ".$db_prefix."custom_pages ORDER BY page_allow_ratings DESC LIMIT 5"); echo 'TOP 5:
'; $rows = dbrows($result); if ($rows != 0) { while ($row = mysql_fetch_array($result)) { echo "
"; echo " ".$row['page_title']."
"; } }else{ echo "Obecnie nie ma żadnych stron."; } echo "

"; closeside();