Problem description:
What would be the easiest way to hold the high scores for my game without a hub?
ID:919224
Aug 7 2012, 8:49 pm
|
|
Problem description:
What would be the easiest way to hold the high scores for my game without a hub? | |
If you want to do it yourself, you could use PHP/ASP/ect with a database like MySQL/SQLite to write a web server app that receives and returns scores.
This might be a good starting place:
http://www.w3schools.com/php/default.asp
You'll also have to find a free webhost that supports PHP and MySQL or SQLite. If you find one that supports only PHP, you may be able to just use file IO to manage the scores.