it is integrated into vbulletin
here is the php for the page:
PHP Code:
<?php
error_reporting(7);
$templatesused='classifieds';
require('./global.php');
if ($bbuserinfo[userid]==0) {
show_nopermission();
}
$bbusername = $bbuserinfo[username];
eval("dooutput(\"".gettemplate('classifieds')."\");");
?>
and it has its own template called "classifieds"
can there not be code written to the phpinclude template to draw the forumtitle,threadcount and forumdescription of forumid 150 and display that info in the classifieds template with a call like $forum150 ?