Topic: Show rescent posts
I have a website(php) and a integrated punbbforum(latest) and want to show a box with latest forumthreads.
I updated rescently fron 1.2** to 1.3** and "show forumthreads" doesn´t work.
See the "old" one below:
Your page should be .shtml and you just call the script extern.php located on PunBB root folder
Code:<!--#include virtual="punbb/extern.php?action=active&show=10" -->
Just place that code anywhere on your index.shtml page and you'll get the 10 recent posts.
Or you can rename your current index.htm (.html) to index.php and include the next code where you want the recent posts to be displayed:
Code:<?php include "punbb/extern.php?action=active&show=10" ?>
You can change the show parameter to your desired number of recent posts.
Anyone who can give me a hint or two?