how can i submit score "ONLINE" in my game?

Questions:

how can i submit score “ONLINE” in my game?

That is a very very broad question with no easy answer.

If you are building for iOS, then we support Apple’s GameCenter.  You would need to create a leaderboard in iTunes Connect and go through all the setup process.  Then you add the necessary code to talk to Game Center.

http://www.coronalabs.com/blog/2012/01/17/tutorial-game-center-integration-ios/

If you are building for Google Play, then we support Google Play Game Services (GPGS).  Like Apple you would login to your developer portal for Google play, click on the controller icon, add your game’s information (GPGS requires at least one achievement be setup … you don’t have to use it).  Then go through all of their setup then add the code for it.

http://www.coronalabs.com/blog/2013/06/25/tutorial-introducing-google-play-game-services/

You can use one of our 3rd party plugin providers like PlayTogether and use their system to do it.

http://docs.coronalabs.com/daily/plugin/together/

You can use your own webhost, setup a database to hold the scores, write the PHP (or ASP, .NET whatever your choice) script to provide a web interface to the database and use our network.request() API to communicate with your server:

http://omnigeek.robmiracle.com/2012/04/15/using-corona-sdk-with-rest-api-services/

Rob

a

That is a very very broad question with no easy answer.

If you are building for iOS, then we support Apple’s GameCenter.  You would need to create a leaderboard in iTunes Connect and go through all the setup process.  Then you add the necessary code to talk to Game Center.

http://www.coronalabs.com/blog/2012/01/17/tutorial-game-center-integration-ios/

If you are building for Google Play, then we support Google Play Game Services (GPGS).  Like Apple you would login to your developer portal for Google play, click on the controller icon, add your game’s information (GPGS requires at least one achievement be setup … you don’t have to use it).  Then go through all of their setup then add the code for it.

http://www.coronalabs.com/blog/2013/06/25/tutorial-introducing-google-play-game-services/

You can use one of our 3rd party plugin providers like PlayTogether and use their system to do it.

http://docs.coronalabs.com/daily/plugin/together/

You can use your own webhost, setup a database to hold the scores, write the PHP (or ASP, .NET whatever your choice) script to provide a web interface to the database and use our network.request() API to communicate with your server:

http://omnigeek.robmiracle.com/2012/04/15/using-corona-sdk-with-rest-api-services/

Rob

a