found the problem in marquee.php was pulling the wrong data vb3_ is used for my tables not my fields. Works fine now
I changed this:
PHP Code:
// connect to the database and pull the info we need.
$latestposts = $DB_site->query("
SELECT vb3_threadid, vb3_forumid, vb3_title, vb3_replycount, vb3_lastposter, vb3_postuserid, vb3_postusername
FROM thread
ORDER BY lastpost
DESC LIMIT " . THREAD_LIMIT . ""
);
while ($latestthread = $DB_site->fetch_array($latestposts)) {
To this:
PHP Code:
// connect to the database and pull the info we need.
$latestposts = $DB_site->query("
SELECT threadid, forumid, title, replycount, lastposter, postuserid, postusername
FROM vb3_thread
ORDER BY lastpost
DESC LIMIT " . THREAD_LIMIT . ""
);
while ($latestthread = $DB_site->fetch_array($latestposts)) {