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

[PHP] Problem with table/button

president vankk

Web Developer & AuraOT Owner
Joined
Jul 10, 2009
Messages
5,719
Solutions
9
Reaction score
339
Hello everyone, I'm having a problem with button at table, check it out.

hpEOb5TRL.png


I need the button "merdas acontece" below Details.

Code:
echo '<tr><td><a href="guilds&action=show&guild='.$war['guild1'].'">'.htmlspecialchars($war['name1']).'</a> has declared war against <a href="guilds&action=show&guild='.$war['guild2'].'">'.htmlspecialchars($war['name2']).'</a>.</td><td>';
         if($guild_leader && $war['guild2'] == $guild->getID())
           {
             $main_content .= '<td><a class="btn btn-info btn-mini" href="guildwar.php">Merdas acontece</a></td>';
           }
           if($guild_leader && $war['guild1'] == $guild->getID())
           {
             $main_content .= '<td><a class="btn btn-info btn-mini" href="guildwar.php">Merdas sempre acontece</a></td>';
           }
         echo '</tr></td>';
 
Back
Top