Code: Select all
// phpBB initialization
define('IN_PHPBB', true);
$phpbb_root_path = BASE_DIR .'/forum/';
include_once($phpbb_root_path . 'extension.inc');
include_once($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
dvdd127 wrote: to put a menu on the left.. i edit header and footer?
Could you show me an example??atnbueno wrote:dvdd127 wrote:to put a menu on the left.. i edit header and footer?
Think of them as "before everything" and "after everything" files. Your webpage could be:So you could put the header and the menu in overall_header.tpl and just the footer in overall_footer.tpl
- header
- menu (left)
- forum (right)
- footer
Code: Select all
<table><tr>
<td>menu</td>
<td>content</td>
</tr></table>
Code: Select all
<table><tr>
<td>menu</td>
<td>
Code: Select all
</td>
</tr><table>