has anyone come across a guitar tab module for nuke? i've scoured the net looking for a tab mod for nuke but can't seem to find one. i did stumble across some standalone code that works pretty well and added it to my site via IFRAME but its got a separate login doesn't take on the theme of the site, etc.
if anyone knows of a module can you drop me a line.
(and if i could code my way out of a paper bag, i'd take a shot at trying to integrate the code i found, but i'm afraid the walls of that paper bag are hefty to me lol)
thanks all
_________________ "It's not that there are too many fools. Its just that god doesn't distribute lightning correctly." - Mark Twain
griffinsbridge Captain
Joined: Aug 25, 2005
Posts: 380
Posted:
Sat Jan 07, 2006 4:21 am
rather than use an Iframe, couldnt you just paste the code into a module?
Ie
Code:
<?php
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
include("header.php");
$index = 0;
OpenTable();
echo "PASTE YOUR HTML CODE HERE MAKING SURE ALL " ARE ESCAPED WITH A \ (IE \")------------";
CloseTable();
include("footer.php");
?>
Or something like that (the above isnt a patched version).
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum