Topic: last 10 threads

ok i know you can retrieve them by the extern.php?action=new&show=10 part but why wont they show upwhere i want them? I have my site set to show the file path but it wont wokr...

doesnt it jsut work by doing <?php require'/extern.php?action=new&show=10'; ?>

if not how wil lit show it withour frames. Im trying to jsut add it into my main.tpl

Re: last 10 threads

Moved to Troubleshooting

You can't include a file on the filesystem using URL parameters. You either need to call it via the full URL or include just extern.php and set $_GET properly beforehand (which you can't do if you want this to show within PunBB, since extern.php wasn't meant to be called by PunBB scripts)
Also, adding PHP to your main.tpl involves calling pun_include, not using PHP directly. You can read more about it in the documentation.