
05-31-2004, 11:54 PM
|
|
|
Join Date: Apr 2004
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by assassingod
If you are trying add the navbar in your page, like in yours screenshot then use this code:
PHP Code:
<?php
// GO TO FORUM DIR
chdir('/full/path/to/forum/directory');
// STANDARD VBULLETIN STUFF
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'script_name');
require_once('./global.php');
// GENERIC_SHELL VARS
$pagetitle = "Title of Page";
$HTML = ""; // PIECED TOGETHER IN SCRIPT
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('$HTML = "' . fetch_template('yourtemplate') . '";');
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
Then in your template, just use $navbar to get it up.
|
Thank you.
Thank you.
and Thank you.
|