Mmkay, inside of a template, you do
not use the
<?php ?> tags and stuff. All PHP (more or less) has to be done directly in your PHP page (and included pages).
Instead of the echo test, you'd be doing this:
{vb:raw mytest}
Now your PHP code has to pass that
mytest variable to the
brothers template, like so:
PHP Code:
$mytest = 'Test';
$templater = vB_Template::create('brothers');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
$templater->register('mytest', $mytest);
See what I'm saying?