Topic: Pulling subjects and authors from ONLY one forum to display on page
Hi all,
Is there any way to pull just the titles of the threads, and their authors (from one forum), and display them on a page?
I can do this right now through vbulletin, but I can't seem to find a way to do it with punbb. I do this currently in vbulletin like so:
<script type="text/javascript" src="http://www.test.com/forums/external.php?type=js&forumids=9"></script>
<script language="" type="text/javascript">
<!--
for (x = 0; x < 6; x++)
{
document.writeln("<a href=\"http://www.test.com/forums/showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a> "+threads[x].threaddate+"<br />");
}
//-->
</script>