- Код: Выделить всё
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
// Assign page specific vars
$template->assign_vars(array(
PLACE_YOUR_ARRAY_HERE
)
);
// Output page
page_header($user->lang['TEMPLATE']);
$template->set_filenames(array(
'body' => 'template.html')
);
page_footer();
?>
html
- Код: Выделить всё
<!-- INCLUDE overall_header.html -->
<style type="text/css">
</style>
</body></html>
<!-- INCLUDE overall_footer.html -->
common.php
- Код: Выделить всё
'TEMPLATE' => 'Пустая страница',
Подскажите пожалуйста, как добавить эту страницу для отображения в "кто сейчас на сайте" ?








