<?php
@ob_start();
?>
<?php
require('/the/path/to/your/wp-blog-header.php');
?>
<?php query_posts('showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
<?php endwhile;?>
<?php
$page_contents = @ob_get_contents();
@ob_end_clean();
echo iconv("UTF-8", "Windows-1252//IGNORE", $page_contents);
?>