Best way to submit online hi-scores?
So currently I've almost finished a little game, but I need online hiscores. I know some php and mysql, so there shouldn't be any problems on server side, but how do I make my game send an variable to server so I can use it in php? Hope there is some way with QML/JS.
Re: Best way to submit online hi-scores?
HTTP get would propably be easiest. just send the data url encoded.
Re: Best way to submit online hi-scores?
GET is simpler, but not really recommended. A GET request should not modify anything on the server. A POST would be more appropriate.