No, putting:
PHP Code:
// file.php?do=eggnog
if ($_REQUEST['do'] == 'eggnog')
{
// Outputs the eggnog template
eval('print_output("' . fetch_template('eggnog') . '");');
}
Would make it so that typing
www.yoursite.com/forum/test.php?do=eggnog would show the eggnog template. Typing
www.yoursite.com/forum/test.php would show an entirely different page. Make sense?
Edit: I just remembered that I had a question.
PHP Code:
$navbits[$parent] = 'Site Rules';
Makes the Site Rules show in the navbar thing, is there anyway to show something under it? Like another thing? I hope that makes sense...