From f40a6e35b3a3b134102909f888fa2cf1e79863e3 Mon Sep 17 00:00:00 2001 From: Leander Date: Thu, 6 Apr 2017 12:27:57 +0200 Subject: [PATCH] T201704081227 --- highscores.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highscores.php b/highscores.php index a3866ce..a661304 100644 --- a/highscores.php +++ b/highscores.php @@ -26,7 +26,7 @@ if($uid == '') { $score = $db->query('SELECT "highscore" FROM "Users" WHERE "ID" = $1', array($uid))['data'][0]['highscore']; $all = $db->query('SELECT COUNT (*) FROM "Users"')['data']['0']['count']; - print 'Score: '.$score; + echo 'Score: '.$score; print 'All: '.$all; }