Hi, Does anyone know where (in which file) should I add some PHP code in order display a dynamic header showing the other sections of my website? I want to add something like: <?php include'my_global_nav.php'; ?> Code (markup): Thank you.
Add it to overall_header.html. You also have to enable PHPBB to allow PHP in templates (you do in PHPBB3, not sure about 2). Then in your template you can use <!-- PHP --> include'my_global_nav.php'; <!-- ENDPHP --> Code (markup):