Toggle navigation
Home
Categories
Discussions
Register
Sign In
Home
›
Support
How can i make a ranking page
Borja
May 2013
edited May 2013
in
Support
With a player name and best results. Ideas?
Thanks.
Comments
Borja
May 2013
I'm trying to create a JSON file sending object to server via ajax. Have a PHP that writes JSON in a file. Now i will try to load this file from my game script and decode JSON.
selim
May 2013
That's more or less what I would have done. This is a possible solution:
1) Call a server page using Ajax and providing as a parameter to the page the player's score.
2) On the server side write the response as a JSON.
3) In the game create the leader board with the data from the JSON.
Borja
May 2013
Yes, Thats what i've done! works very well. Now i have best scores in my game.
I read the JSON with $.getJSON
i've almost finished the game!!
:)
Sign In
or
Register
to comment.
Comments
1) Call a server page using Ajax and providing as a parameter to the page the player's score.
2) On the server side write the response as a JSON.
3) In the game create the leader board with the data from the JSON.
I read the JSON with $.getJSON
i've almost finished the game!! :)