Global Statistics for a game

Does anyone know any service that offers a server to track world-wide player stats? For example I want to display how many enemies that everyone in the world has killed to the player.

I know I can probably setup some php script and record it but I don’t have the services to do it nor do I like server side coding.

Thanks!

You mean like for all players in all games or just in your game?

Either way no information of what’s happening any game can be tracked until the tracking service has been specifically integrated with a game.
The big boy in tracking game doesn’t offer any API for making the integration yourself : http://www.gametracker.com/forums/forum.php?site=1&post=269256 so it’s likely that what you’re looking for doesn’t exist. You should perform an extensive Google search to make sure.
Even if you find something it will most likely not be free. If you’re to spend money anyway then just hire someone to do the server coding for you.

For all players in my game. I did a bit more googling and it might possible to use things like scoroid or parse but not sure yet.
I think my game basically would do some kinda api call like

postKillsToServer(100)

then the server would add that to the global amount

Then in the app it would say

the entire game community has killed 100000 enemies so far