Here are the leaders as of May 19th:
'5', 'Ken DiGilo' => '-2', 'Kevin Whalls' => '1'); // display the leaderboard table echo '
Name
Score
'; // display the leaderboard based on the current data foreach ($scores as $player => $score) { echo "
Player: $player
"; if ($score < 0) print "
$score
"; else print "
$score
"; } echo '
'; ?>