From a61ffc41ba86739e5f0f8b96eb89cc57c249f0de Mon Sep 17 00:00:00 2001 From: thisfro Date: Tue, 6 Oct 2020 13:45:19 +0200 Subject: [PATCH] use " in echo --- index.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/index.php b/index.php index 3789da5..dd2cd88 100644 --- a/index.php +++ b/index.php @@ -9,16 +9,16 @@ if($ms->is_online()) { echo("

Join on server.thisfro.ch!

"); - echo(

The Server is:

); - echo(

online

); - echo(

running version

); - echo(

%s


, $ms->get_versrion()); - echo(

Players online

); - echo(

%s / %s

), $ms->get_current_players(), $ms->get_max_players()); + echo("

The Server is:

"); + echo("

online

"); + echo("

running version

"); + echo("

%s


", $ms->get_versrion()); + echo("

Players online

"); + echo("

%s / %s

)", $ms->get_current_players(), $ms->get_max_players()); } else { - echo(

The Server is:

-

offline

); + echo("

The Server is:

"); + echo("

offline

"); } ?>