Quote:
Originally Posted by rake
first of all, you'd need some of the vbulletin functions, so you need to include the vb global file, then get the navbar, and then echo it.
<?php
chdir("path/to/my/forums");
include("./global.php");
eval('$navbar = "' . fetch_template('navbar') . '";');
echo $navbar;
?>
|
I used the php you gave me annd it does not display the navbar. I then modified it to the following to include the header and got the same result.
<?php
chdir("/home/webbhelp/www/forums");
include("./global.php");
eval('$header = "' . fetch_template('header') . '";');
echo $header;
eval('$navbar = "' . fetch_template('navbar') . '";');
echo $navbar;
?>
Ideas?