• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

website problems (adding tables)

Smygarn

New Member
Joined
Feb 24, 2009
Messages
31
Reaction score
1
So i have my war system but when i it doesnt show up at my website (wars) but i changed to a layout called "bludragon" and then it showed up, weird? or am i doing something wrong?

I added it to the index.php, something more i have todo?


Lua:
		case "wars";
                $topic = "Guild Wars";
                $subtopic = "wars";
                include("wars.php");
        break;
 
Do you have this in both layouts.php?

Code:
<a href='index.php?subtopic=wars'>
  <div id='submenu_wars' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
    <div class='LeftChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
    <div id='ActiveSubmenuItemIcon_wars' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
    <div class='SubmenuitemLabel'>Guild Wars</div>
    <div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
  </div>
</a>
 
Back
Top