<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, false);
require(‘wp/wp-blog-header.php’);
?>
<?php
$posts = get_posts(‘numberposts=10&order=ASC&orderby=post_title’);
foreach ($posts as $post) : start_wp(); ?>
<?php the_date(); echo “
“; ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php
endforeach;
?>
<?php query_posts(‘showposts=3’); ?>
<?php while (have_posts()) : the_post(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
<?php endwhile;?>
this is the code that i’m using