2
You can wrap anything into XOOPS using two simple bits of PHP code, (shown below)
Put this at the top of your PHP file.
include("../../mainfile.php");
include("../../header.php");
include("header.php");
OpenTable();
?>
Put this at the bottom of your php file
CloseTable();
include ("../../footer.php");
?>
Make sure you adjust the paths to header.php and footer.php as needed for your site (they are in the top XOOPS directory).
Jonathan