laatste-topic-phpbb
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$host = 'localhost'; //mysql host, meestal is dat 'localhost'
$Naam = 'donald'; //mysql username
$Paswoord = 'duck'; //mysql passwoord
$database = 'dbtje'; //mysql database
mysql_connect($host,$Naam,$Paswoord);
mysql_select_db($database);
//define forum id
//dit is om te selecteren uit een subforum als je het niet wilt (Dus alle subforums) dan moet je even de sql query aan passen. Door WHERE forum_id = '.$forum_id.' te verwijderen
$forum_id = 5;
$headlines_num = 5;
$prefix = 'phpbb_';
//show headlines
$sql = 'SELECT topic_title, topic_id FROM '.$prefix.'topics WHERE forum_id = '.$forum_id.' ORDER BY topic_id DESC LIMIT 0,'.$headlines_num.'';
$out = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_assoc($out)){
echo '<a href="/forum/viewtopic.php?t='.$row['topic_id'].'" target="_blank">'.$row['topic_title'].'</a><br />';
}
?>
$host = 'localhost'; //mysql host, meestal is dat 'localhost'
$Naam = 'donald'; //mysql username
$Paswoord = 'duck'; //mysql passwoord
$database = 'dbtje'; //mysql database
mysql_connect($host,$Naam,$Paswoord);
mysql_select_db($database);
//define forum id
//dit is om te selecteren uit een subforum als je het niet wilt (Dus alle subforums) dan moet je even de sql query aan passen. Door WHERE forum_id = '.$forum_id.' te verwijderen
$forum_id = 5;
$headlines_num = 5;
$prefix = 'phpbb_';
//show headlines
$sql = 'SELECT topic_title, topic_id FROM '.$prefix.'topics WHERE forum_id = '.$forum_id.' ORDER BY topic_id DESC LIMIT 0,'.$headlines_num.'';
$out = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_assoc($out)){
echo '<a href="/forum/viewtopic.php?t='.$row['topic_id'].'" target="_blank">'.$row['topic_title'].'</a><br />';
}
?>