1
Ask a Question / Re: HTTP Cookies
« on: February 28, 2013, 10:44:41 am »
POST is much more secure than GET, which is visible on the URL. I'd send the scores using the POST to URL function and then have some PHP code on the server that accesses the scores using $_session - that way you could post the data along with the players name, times, levels, etc and still break them down into separate fields on the server. You could even use random numbers in fields before and after the scores to obfuscate things or use a formula to hide things - send score /4 +27 for example in the midst of other numbers and use the session array to break it down into fields and then just decode the score field on the server.