Create this page as marquee.php
PHP Code:
<?php
error_reporting(7);
require("./global.php");
$latestposts=$DB_site->query("SELECT postid,LEFT(pagetext,20) AS text FROM post ORDER BY dateline DESC LIMIT 10");
while ($latestpost=$DB_site->fetch_array($latestposts)) {
if ($marquee) {
$marquee .= " "; // String to seperate between each link
}
$marquee .= "<a href=\"showthread.php?s=$session[sessionhash]&postid=$latestpost[postid]\">$latestpost[text] ...</a>";
}
?>
<marquee-code-here value="<? echo("$marquee"); ?>">
and put it in your forum's root.
Now just use SSI to include it
Code:
<!--#include file="vbb/marquee.php"-->
and also change the actually code for the marquee as I don't know it.