You could make your own module with IFrames. Though IFrames are usually not very comfortable to work in.
An example index.php for such a module would look like this:
| PHP: |
<?
if (!defined("CPG_NUKE")) exit;
include("header.php");
OpenTable();
?>
<iframe href="/dkp.php" width="100%" height="500">This page requires IFrames to work correctly, which is really just a hack introduced by MS, but most new browsers support it. <a href="http://www.getfirefox.com">Get Firefox!</a></iframe>
<? CloseTable(); include("footer.php");
?>
|