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

Gęsior ACC help!

Cys9211

Sencor!
Joined
Aug 21, 2008
Messages
104
Reaction score
4
Location
Poland (Bełchatów)
How do I set number (1,2,3) were not visible when I log on.
beztytjhj.png



Code:
<li><a href="index.php?subtopic=accountmanagement">Zaloguj</a></li>
                            <?php if($logged): ?>
                            <li><a href="index.php?subtopic=accountmanagement&amp;action=logout">Wyloguj</a></li>
                            <?php endif; ?>
                            <li><a href="index.php?subtopic=createaccount">Stwórz Konto</a></li>
                            <li><a href="index.php?subtopic=lostaccount">Odzyskaj Konto</a></li>
                            <li><a href="index.php?subtopic=tibiarules">Regulamin</a></li>
 
Try this code

PHP:
  <?php if(!$logged): ?>
             <li><a href="index.php?subtopic=accountmanagement">Zaloguj</a></li>
             <?php endif; ?>
             <?php if($logged): ?>
             <li><a href="index.php?subtopic=accountmanagement&amp;action=logout">Wyloguj</a></li>
             <?php endif; ?>
             <?php if(!$logged): ?>
             <li><a href="index.php?subtopic=createaccount">Stwórz Konto</a></li>
             <li><a href="index.php?subtopic=lostaccount">Odzyskaj Konto</a></li>
             <?php endif; ?>
             <li><a href="index.php?subtopic=tibiarules">Regulamin</a></li>
 
Back
Top