Kod
$substr="20"; // Ile znaków nazwy tematu ma wyswietlac
$prefix="phpbb"; // Prefix do bazy phpBB bez _
$ile = 5; // Ile ostatnich tematow ma wyswietlic
$sql=mysql_connect("localhost","...","...");
$result=mysql_db_query("teach_forum","SELECT `topic_id` , `topic_title` FROM `".$prefix."_topics` LIMIT 0,".$ile." ORDER BY topic_id DESC");
// Wyswietlamy ostatnie tematy
while($wiersz=mysql_fetch_array($result))
{
$temat=substr($wiersz[1] ,0,$substr);
echo '<a href="http://adres do forum/viewtopic.php?t='.$wiersz[0].'" target="_blank">'.$temat.'...</a><br />';
}
mysql_close($sql);
$prefix="phpbb"; // Prefix do bazy phpBB bez _
$ile = 5; // Ile ostatnich tematow ma wyswietlic
$sql=mysql_connect("localhost","...","...");
$result=mysql_db_query("teach_forum","SELECT `topic_id` , `topic_title` FROM `".$prefix."_topics` LIMIT 0,".$ile." ORDER BY topic_id DESC");
// Wyswietlamy ostatnie tematy
while($wiersz=mysql_fetch_array($result))
{
$temat=substr($wiersz[1] ,0,$substr);
echo '<a href="http://adres do forum/viewtopic.php?t='.$wiersz[0].'" target="_blank">'.$temat.'...</a><br />';
}
mysql_close($sql);