• 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!

problem acc

white91

New Member
Joined
Jun 4, 2008
Messages
136
Reaction score
0
Hello everyone i have problem in acc maker. So, in my site i cant see new "table"?
For example:
I add Powergamers to index.php
Code:
	case "whoisonline";
		$topic = "Who is online?";
		$subtopic = "whoisonline";
		include("whoisonline.php");
	break;
	
	case "highscores";
		$topic = "Highscores";
		$subtopic = "highscores";
		include("highscores.php");
	break;

        case "powergamers";
                $topic = "Powergamers";
                $subtopic = "powergamers";
                include("powergamers.php");
        break;

	case "killstatistics";
		$topic = "Last Kills";
		$subtopic = "killstatistics";
		include("killstatistics.php");
	break;
	
	case "houses";
		$topic = "Houses";
		$subtopic = "houses";
		include("houses.php");
	break;

And in site i cant see Powergamers
tabley.png


What is wrong?
 
i think that you have to add it to the layout.php

C:\xampp\htdocs\layouts\tibiacom
 
Back
Top