diff options
-rw-r--r-- | backend/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/index.php b/backend/index.php index 5c21f34..76d9731 100644 --- a/backend/index.php +++ b/backend/index.php @@ -44,9 +44,9 @@ foreach($found as $row): $i++; if ($i === sizeof($found)) { - echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon:\": \"$row[fromanon]\" }"; + echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon\": \"$row[fromanon]\" }"; } else { - echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon:\": \"$row[fromanon]\" }, "; + echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon\": \"$row[fromanon]\" }, "; }; endforeach; |