openside("Artykuły"); $result = dbquery("SELECT article_id, article_subject FROM ".$db_prefix."articles ORDER BY article_id DESC "); echo 'Artykuły:
'; while ($row = mysql_fetch_array($result)) { echo ' '; echo($row['article_subject']); echo ''; echo '
'; } closeside();