beh, e decisamente una cosa semplice.
il concetto finale e che lo stamp a video nn e in formato html ma in xml.
Usando la struttura ad albero dell'xml e il while per il ciclo dei post presi dal db nn dovresti trovare nessun problema.
codice:
<rss version="2.0">
<channel>
<generator>PHP</generator>
<title>TITOLO RSS DEL BLOG</title>
<link>LINK AL BLOG</link>
<description>DESCRIZIONE BLOG</description>
<language>it</language>
<webMaster>EMAIL</webMaster>
<copyright>©2006 DUCKKOLO</copyright>
<? while(quello che serve){?>
<item>
<title>TITOLO DEL POST</title>
<link>LINK ASSOLUTO AL POST</link>
<description>TESTO DEL POST (OPZIONALE)</description>
</item>
<? }?>
</channel>
</rss>