I asume your using an SQL database for the forum..
If you got a date field in the table where the posts are you can do something like
SELECT subject FROM forum_posts ORDER BY date DESC LIMIT 0, 10;
This will select 10 most recent post...
you can also throw in a "WHERE parent = 0" or whatever spesifies that this is not a reply to another message
Andreas