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

Solved Need help with a PHP code I got.

Naxtie

mapper, designer
Joined
Oct 15, 2011
Messages
1,565
Solutions
1
Reaction score
250
Location
Sweden
SOLVED THANKS TO NINJA!

Hey, I got this piece of php code to show if my server is online and so on.. It seemed to worked fine on 0.3.6 & 0.4 but when I switched to tfs 1.0 it seems like it's not working. Anyways, here's the code, I hope that someone will be able to answer why it isnt working :p

PHP:
<?PHP if($config['status']['serverStatus_online'] == 1) { echo '<font color="#b0fa00"><b>ONLINE</b></font>'; } else { echo '<font color="#c31818"><b>OFFLINE</b></font>'; } ?></b></td>
                                    </tr>
                                    <tr>
                                        <td >Server Uptime:</td>
                                        <td>
                                        <?PHP if($config['status']['serverStatus_online'] == 1) { echo '<font color="#e8ceb7"><strong>' . $config['status']['serverStatus_uptime'] . '</font>'; } else { echo '--//--'; } ?></td>
                                    </tr>
                                    <tr>
                                        <td>Players Online:</td>
                                        <td>            
                                        <?PHP
                                    if($config['status']['serverStatus_online'] == 1)
                                    echo '<a href="?subtopic=whoisonline"><br></a>' . $config['status']['serverStatus_players'];
                                    else
                                    echo '-';
                                    ?>

Thanks in advance,
Naxtie
 
Last edited:
Back
Top