1
Hi all
I'm trying to create a module and am running into a very odd problem. The module has a main page (index.php) and several sub menus, each their own page. The intro page (index.php) has the following php include code to include the XOOPS headers and footers:
include '../../mainfile.php';
include XOOPS_ROOT_PATH.'/header.php';
page contents
include XOOPS_ROOT_PATH.'/footer.php';
which works fine. The other pages have these same lines as well, however, when one of those is clicked on, the only thing to show up is the page contents. There's no header, no theme, or anything. Does anyone know what the problem might be here?