Topic: Blogs with punportal
Can it be done Tubby? so it only retrieve the last post from one specific user?:
<?
$result = $db->query('SELECT f.id, t.subject, t.id, t.forum_id, t.last_post FROM '.$db_prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id WHERE t.forum_id='.$forumid1.' ORDER BY t.last_post DESC LIMIT '. $topicdisplay) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
while($cur_topic = $db->fetch_assoc($result))
{
?>
i still using your first version.