ich habe 2 Dateien:
xxx.php
Code: Alles auswählen
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
$page_title = 'test page';
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$template->set_filenames(array(
'hallo' => 'hallo.tpl'
));
$template->assign_vars(array(
'L_TEXT01' => 'Hallo! Test',
'L_TEXT01' => 'Text 2'
));
$template->pparse('hallo');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
Code: Alles auswählen
<a href="{U_INDEX}" class="nav">{L_INDEX}</a>
<table width="100%" border="0" cellpadding="4" cellspacing="1" class="forumline">
<tr>
<th class="thTop">Hallo! Test</th>
</tr>
<tr>
{L_TEXT01}<br />
{L_TEXT02}<br />
</tr>
</table>