nevermind, fixed with the following -
Quote:
ob_start();
$excluded = "1,2,3";
$forum_get = vB::$db->query_read("
SELECT * FROM ".TABLE_PREFIX."forum
WHERE forumid NOT IN ($excluded) ORDER by forumid");
$output_bits = '';
while($forum = vB::$db->fetch_array($forum_get))
{
$output_bits .= '<a href="http://www.mydomain.com/forum'.$forum[forumid].'" style="text-decoration: none">'.$forum[title].'</a>
<br /> ';
}
$output = $output_bits;
ob_end_clean();
|
replace mydomain.com with your domain name. This will make it so that you're URL's are seo'd as long as u have vbSEO installed.