1
I am only trying to show a different php script/program inside xoops. [Not by using IFRAME]
I created the following files.
xoops_version.php $modversion['name'] = 'NAME';
$modversion['version'] = Version;
$modversion['description'] = 'Description';
$modversion['credits'] = 'Credits';
$modversion['author'] = 'Author';
$modversion['license'] = 'License';
$modversion['official'] = 'yes';
$modversion['image'] = 'images.gif';
$modversion['dirname'] ='name';
?>
Then I added codes in each relevant php files of that program with the following code structure.
include("../../mainfile.php");
include("../../header.php");
?>
...program's codes in relevant php file....
include("../../footer.php");
?>
Then I installed the module (directory "name") as other modules. It installed successfully.
Now problem is when I browse a page of that module, theme acts wired. Tables are misplaced, layout broken etc. etc.
How to fine tune it? Thanks.