openside("Tematy z forum"); $limit = 10; $result = dbquery("SELECT topic_id, topic_title, topic_poster FROM phpbb_topics ORDER BY topic_poster DESC LIMIT $limit"); while ($row = mysql_fetch_array($result)) { echo ' '; echo(substr($row['topic_title'],0,20)); echo ''; echo '
'; } closeside();