// tutaj podaj adres forum
$forum='./forum/';
// tutaj napisz ile ostatnich tematów ma być wyciąganych
$ile='10';
$db_config=$forum.'config.php';
if (file_exists($db_config)) {
include($db_config);
$sql=mysql_connect ($db_host,$db_username,$db_password);
mysql_select_db($db_name);
$pobierz_najnowsze="SELECT
subject,
last_post,
id
FROM
punbb_topics
WHERE
last_post <= ".time()."
ORDER BY
last_post DESC
LIMIT
0,".$ile;
$wykonaj_najnowsze=mysql_query($pobierz_najnowsze);
while ($tematy = mysql_fetch_array($wykonaj_najnowsze)):
echo "".$tematy["subject"]."
";
endwhile;
mysql_close($sql);
}