Extension talk:PHPBB ShowForum
From MediaWiki.org
Hi Marcolino,
Thank you for this nice extension. There is a question, how to set the language shown at the forum embed in my wiki?--Roc michael 14:54, 18 March 2009 (UTC)
[edit] phpbb3
Hey,
so it looks like this still works with PHPBB3 as well.
i tweaked mine a bit so it would fit in a single row and the name of the last poster shows:
//Cycle inside recordset and populate page while ($row = mysql_fetch_row($qryres)) { $out = $out . " <tr style=\"background-color: #$bgColor\"> <td width=\"2%\" valign=\"center\"><img src=\"".$phpbb_home.$phpbb_icon_path."\" ></td> <td> <strong><a href=\"".$phpbb_home."viewtopic.php?t=".$row[1]."#".$row[2]."\" class=\"external text\" >".$row[0]. "</a></strong> by <a href=\"".$phpbb_home."memberlist.php?mode=viewprofile&u=".$row[10]."\">".$row[9]."</a> on ".date("D, d M Y H:i",$row[3])." </td> </tr>"; } //End While
cheers, --Rvries 09:41, 7 April 2010 (UTC)