use echo to render text
This commit is contained in:
parent
5892578782
commit
71573da55d
1 changed files with 11 additions and 10 deletions
21
index.php
21
index.php
|
@ -6,18 +6,19 @@
|
|||
<?php
|
||||
require_once('minestat.php');
|
||||
$ms = new MineStat("localhost");
|
||||
if($ms->is_online()) {
|
||||
<h3>Join on server.thisfro.ch!</h3>
|
||||
<p>The Server is: </p>
|
||||
<h2 class="online status">online</h2>
|
||||
<p>running version</p>
|
||||
<h2>1.16.3</h2><br>
|
||||
<p>Players online</p>
|
||||
<h2>0 / 10</h2>
|
||||
|
||||
if($ms->is_online()) {
|
||||
echo("<h3>Join on server.thisfro.ch!</h3>");
|
||||
echo(<p>The Server is: </p>);
|
||||
echo(<h2 class="online status">online</h2>);
|
||||
echo(<p>running version</p>);
|
||||
echo(<h2>%s</h2><br>, $ms->get_versrion());
|
||||
echo(<p>Players online</p>);
|
||||
echo(<h2>%s / %s</h2>), $ms->get_current_players(), $ms->get_max_players());
|
||||
}
|
||||
else {
|
||||
<p>The Server is: </p>
|
||||
<h2 class="offline status">offline</h2>
|
||||
echo(<p>The Server is:</p>
|
||||
<h2 class="offline status">offline</h2>);
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue