7
There are several contact modules for XOOPS and also some free formular modules that can serve as such.
If yours is a PHP file, You can incorporate your PHP code in a blanko module as eg Ghost. Or using as already suggested the myFrame module.
You can also let your file use the XOOPS header and footer by placing your code between this:
if (file_exists("mainfile.php")) {
include("mainfile.php");
} elseif (file_exists("../mainfile.php")) {
include("../mainfile.php");
} else {
include("../../mainfile.php");
}
include(XOOPS_ROOT_PATH."/header.php");
$xoopsTpl->assign( 'xoops_showrblock', 0); // 1 = Avec blocs de droite - 0 = Sans blocs de droite
$xoopsTpl->assign( 'xoops_showlblock', 0); // 1 = Avec blocs de gauche - 0 = Sans blocs de gauche
// your code here
include(XOOPS_ROOT_PATH."/footer.php");
?>