MyBB Community Forums

Full Version: Questions about RSS / Syndication / Feeds
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I use to use this code to display the last 10 posts in my vB forum on my front page:
<!--
for (x = 0; x < 10; x++)
{
document.writeln("<li><a href=\"http://www.idevgames.com/forum/showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a></li");
}
//-->
I know how to display the feed for MyBB, but how do I display a list (<li>) of the last 10 from the entire forum, and just have the titles appeared hyperlinked?

I'd also like to do the same for just a specific forum as well.

thanks
I suggest going on Dynamic Drive or search google for a PHP or JavaScript (depending on what your using it for a PHP one might be better) RSS reader. There are ones that you just have to copy and paste.