include ($phpbb_root_path . 'includes/page_header.'.$phpEx);
This calls the page header which calls the overal_header.tpl, the qbar and the header blocks, and phpbb security if you have that installed.
You may also want to define your scripts in phpbb as such]define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);[/color]
And to make the page look like other pages, you may want to call the page footer as well, by putting the following at the bottom of your script
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);Statistics: Posted Author: computerz — Mon Sep 04, 2006 6:25 am
]]>