use " in echo
This commit is contained in:
parent
71573da55d
commit
a61ffc41ba
1 changed files with 8 additions and 8 deletions
16
index.php
16
index.php
|
@ -9,16 +9,16 @@
|
|||
|
||||
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());
|
||||
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 {
|
||||
echo(<p>The Server is:</p>
|
||||
<h2 class="offline status">offline</h2>);
|
||||
echo("<p>The Server is:</p>");
|
||||
echo("<h2 class='offline status'>offline</h2>");
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue