>>
Site Map
>>
Forums
>>
Modules 7x
Forum module - topics in forum:
Modules 7x - Discussions regarding PHP-Nuke Modules. 7x
External page in a module
Hey again...
I want to add a module to our site, linked to a external webshop... is this possible ???
http://www.thesite.com/cgi-bin/subfolder/index.html?bread_reset=1&id=pDGV5Q34
is kinda the address... I tried to set this page in index.php on our page, but it wont show... is there another way to do it in, so it opens up in the PHP nuke site and with our design ?
Thanks
Stefan
search this site (and other nuke support sites) for nukewrap. it's probably what you are looking for.
well I did find something...
| Code: : |
<?php
if (!eregi("module.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
$index = 0;
$module_name = basename(dirname(__FILE__));
include("header.php");
OpenTable();
?>
<iframe width="100%" height="800" scrolling="auto" FrameBorder="0" MarginHeight="0" MarginWidth="0" SRC="http://www.site.com/"></iframe>
<?php
CloseTable();
include("footer.php");
?> |
However... is there anyway I can get the script to remove the left colum... with the Module bar etc and open up 'fully' in the table ?
Thanks
Stefan
http://phpnuke-uk.net/modules.php?name=Forums&file=viewtopic&t=592
Great
thanks Dar...