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; }