I think you mean you want like just a brief of the whole blog post?
I used php after the query to cut it down. so something like this:
Blog Title
blog body blah blah blah blah blah blah blah blah
became this:
Blog Title
blog body blah bla...
$short_length = 30; //Max # of characters you want to show
$window_caption = "<h1>My Blog</h1>";
while(($row = mysql_fetch_array($result)){
// make pretty seperator & show blog title
$window_caption .= "<br />
<hr width=\"70%\" />
<br />
<b>{$row['blog_title']}</b><br />";
// Cut down size of body so only a brief view of the full post is visible
$blog_short = trim(strip_tags(substr($row['blog_body'], 0, $short_length)));
// add ... to indicate there is more than what is shown
$blog_short .= "...";
// apply shortened post to my html
$window_caption .= $blog_short . "<br />\n";
}
echo $window_caption; //Show full html with all my blog posts
edit: forgot semi-colon... bad Himegoto... shame...