2012-06-08, 01:28 PM
Im lookng to have a seperate page for the latest X amount of threads.
Ive seen many threads about adding similar things to sidebars, portals etc but nothing for a seperate page.
Ive got this code which I found on the forum but I need the page to follow the MyBB template, aswell as use pagination etc.
Anyone got any idea what needs to be done?
Thanks
Ive seen many threads about adding similar things to sidebars, portals etc but nothing for a seperate page.
Ive got this code which I found on the forum but I need the page to follow the MyBB template, aswell as use pagination etc.
<?php
define("IN_MYBB", 1);
require_once("./global.php"); // Change this if needed
$tlimit = 5; // How many titles you want
$query = $db->query("SELECT * FROM ".TABLE_PREFIX."threads ORDER BY `tid` DESC LIMIT $tlimit");
while($fetch = $db->fetch_array($query)){
echo '<a href="./showthread.php?tid='.$fetch['tid'].'">'.$fetch['subject'].'</a><br />' . "\n";
}
?>
Anyone got any idea what needs to be done?
Thanks