<?php global $post;
$myposts = get_posts('showposts=10&cat=1,2');
foreach($myposts as $post) : setup_postdata($post);
?>
<div>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
</div>
<?php endforeach; ?>