<?php
query_posts(‘showposts=1&cat=3′);
while(have_posts()) : the_post();
?>
<ul>
<li><h3><a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></a></h3>
<ul>
<li><?php the_content(); ?></li>
</ul>
</li>
</ul>
<?php endwhile; ?>