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

Player Commands Widget not working

Tyson12302

New Member
Joined
Aug 6, 2014
Messages
264
Reaction score
4
Can anyone tell me why this code is not working. Im trying to make a widget that will show all the players commands. My website goes white when i click on the widgets whys that. Also how could i add skill rates,loot rates and magic rates?
Here is my commands.php.
PHP:
<?php include 'layout/overall/footer.php'; ?>
<h1>Player Commands</h1>
Here are the official Player Commands in <?php echo '<b>'.$config['site_title'].'</b>'; ?>
<?php
$talkactions = simplexml_load_file($path.'/data/talkactions/talkactions.xml'); 
    echo '<table cellpadding="0"><tr class="yellow"><td><center>Player commands</center></td></center></tr>'; 
    foreach ($talkactions as $commands) { 
        if (empty($commands['access'])) { 
    echo '<center><tr><td><center>'.$commands['words'].'</center></td></tr></center>'; 
        } 
    } 
    echo '</table></tr>'; 
     
} else { 
     
echo '<br><b>Invalid path!</b>'; 
     
} 
?> 
<?php include 'layout/overall/footer.php'; ?>
menu.php
PHP:
    </ul>
    </div>
               
    <div class="clean_5"></div>
   
    <div id="menu-label">
        <div id="icon-community"></div>
        <div id="text-community"></div>
    </div>
    <div id="menu_links">
        <li><a href="onlinelist.php">Who is Online?</a></li>
        <li><a href="highscores.php">Highscores</a></li>
        <li><a href="guilds.php">Guilds</a></li>
        <li><a href="guildwar.php">Guild Wars</a></li>
        <li><a href="forum.php">Forum</a></li>
        <li><a href="houses.php">Houses</a></li>
       <li><a href="support.php">Support</a></li>
        <li><a href="gallery.php">Gallery</a></li>
        <li><a href="deaths.php">Last Deaths</a></li>
        <li><a href="spells.php">Spells</a></li>
        <li><a href="commands.php">Player Commands</a></li>
       
       
       
       
    </div>
               
    <div class="clean_5"></div>
               
    <div id="menu-label">
        <div id="icon-library"></div>
        <div id="text-library"></div>
    </div>
    <div id="menu_links">
        <li><a href="serverinfo.php">Server Rates</a></li>
        <li><a href="downloads.php">Downloads</a></li>
        <li><a href="changelog.php">Changelog</a></li>
        <li><a href="experiencetable.php">Expierence Table</a></li>
    </div>
               
    <div class="clean_5"></div>
               
    <div id="menu-label">
        <div id="icon-shop"></div>
        <div id="text-shop"></div>
    </div>
    <div id="menu_links">
        <li><a href="buypoints.php"><b><font color="red">Buy Points</font></b></a></li>
        <li><a href="shop.php"><b><font color="green">Shop Offers</font></b></a></li>
    </div>
 
Back
Top