Send data to server with GET
- by coderjoe
I have made a site where all my highscores from my game are shown. I send the scores from my iphone game to my site using a script made with php. The script works, because if I enter the link produced by my app in my browser the score is added.
However I want to send the scores from my app. The script is using the GET method to get name, scores etcetera.
This is what i have now:
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
NSError * e;
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&e];
But it's not sending data to my server.
The urlString is correct, because if I enter the link produced by my app in my browser the score is added.
How can i solve this problem,
Thanks in advance