View Single Post
Old 04-30-2007, 07:20 AM   #17
BrainSmashR
Banned
 
BrainSmashR's Avatar
 
Join Date: Feb 2007
Location: Natchitoches
Age: 53
Posts: 1,090
Rep Power: 0 BrainSmashR will become famous soon enough
Send a message via ICQ to BrainSmashR Send a message via AIM to BrainSmashR Send a message via MSN to BrainSmashR Send a message via Yahoo to BrainSmashR
Well, I hate to blow my cover, but Nuke is php for dummies. Pretty much anything you can get to look normal, I can wrap in php and an Iframe and utilize on my site.

Notice these two links point to the same thing, but I can write a "module" which is just an index.php, to make the page appear within my site.

With my header, footer, and sidebar
http://www.brainsmashr.com/modules.p...=Photo_Gallery

Without my header, footer, and sidebar
http://www.brainsmashr.com/JAlbum

PHP Code:
<?php
if (!defined('MODULE_FILE')) {
   die(
'You can\'t access this file directly...');
}
$module_name basename(dirname(__FILE__));
get_lang($module_name);

$pagetitle '- '.$module_name;
include(
"header.php");
$index 0;
OpenTable();
echo
"<iframe src=\"http://www.brainsmashr.com/JAlbum\" name=\"Pics\" scrolling=\"yes\" frameborder=\"no\" align=\"right\" height = \"2000px\" width = \"100%\">"
  
"</iframe>";
CloseTable();
include(
"footer.php");

?>
BrainSmashR is offline   Reply With Quote