AJ, I don't understand. You want the latest 10 threads' titles to be displayed?
If so, use this:
PHP Code:
<?php
error_reporting(7);
require("./global.php");
$latestposts=$DB_site->query("SELECT threadid,title FROM thread ORDER BY dateline DESC LIMIT 10");
$marquee="";
while ($latestpost=$DB_site->fetch_array($latestposts)) {
if ($marquee) {
$marquee .= " "; // String to seperate between each link
}
$marquee .= "<a href=\"showthread.php?s=$session[sessionhash]&threadid=$latestpost[threadid]\">$latestpost[title] ...</a>";
}
?>
<marquee-code-here value="<? echo("$marquee"); ?>">