So in etwa, ist der Ticker mit Javascript oder <marquee> ?PHP-Code:
$newpost = db_query("SELECT * FROM vms_forum_topics ORDER BY topic_last_post_time DESC LIMIT 5");
while ($row = mysql_fetch_array($newpost)) {
echo '<a href="?content=/forum/showtopic&fid='.$row['forum_id'].'&tid='.$row['topic_id'].'>'.$row['topic_title'].'</a> Letzter Beitrag von: '.$row['topic_last_post_name'].' am: '.date('d.m. H:i',$row['topic_last_post_time']).'<br>';
}
Bei letzterem reicht es den Teil innerhalb des <marquee>, bei JS musst du schaun wo da der Text genau hinkommt.