<?php $posts = get_posts('numberposts=5&orderby=post_date&category=1,2,3'); foreach($posts as $post) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>