This does not exist
PHP Code:
$templater->register('pagetitle', 'Test Page');
I want to show here is a variable
Example:
PHP Code:
// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle = 'My Page Title';
$adem = 'Hello World';
HTML - template test
HTML Code:
<h2 class="blockhead">Title</h2>
<div class="blockbody">
<div class="blockrow">
Text
{vb:raw adem}
</div>
</div>
Does not appear on the page
--------------- Added [DATE]1259433584[/DATE] at [TIME]1259433584[/TIME] ---------------
First message changed?
I have to add the following for $adem variable is?
$templater = vB_Template::create('TEST');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
$templater->register('adem', $adem);
print_output($templater->render());