This worked for me:
<?
$recentPosts = new WP_Query();
$recentPosts->query('orderby=date&cat=20');
if ($recentPosts->have_posts()) : ?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><b><?php the_title(); ?></b></a>
<?php the_content('Read the rest of this entry »'); ?>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Questions Found.</h2>
<?php endif; ?>