Updated code to:
<ul>
<?php query_posts('showposts=3&orderby=date'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><strong><a href="<?php the_permalink() ?>"><?php the_title() ?> </a></strong><br />
<?php the_time('F j, Y'); ?><br />
<?php $excerpt = strip_tags(get_the_excerpt());
echo $excerpt; ?>
<?php endwhile; endif; ?>
</ul>
And its working perfectly ?? I heart WordPress