8 ORDER BY t.topic_time DESC'; if ($number_of_posts != 0) { $sql .= 'LIMIT 0,10'; } if(!($result = $db->sql_query($sql))) { message_die(GENERAL_ERROR, 'Could not query announcements information', '', __LINE__, __FILE__, $sql); } while($row = $db->sql_fetchrow($result)){ $tresc = nl2br(stripslashes($row['post_text'])); echo '
Tytuł: '.$row['topic_title'].'
'; echo '
dodany '.create_date($board_config['default_dateformat'], $row['topic_time'], $board_config['board_timezone']).' przez '.$row['username'].''; echo '
'.$tresc; echo '
Komentarze: [ '.$row['topic_replies'].' ]'; echo ' | Dodaj komentarz

';} $db->sql_freeresult($result); ?>