I've been trying to send JSON data from an iOS app to a mySQL database via a php page. For some reason, my POST data is not available in the php page.
- (IBAction)jsonSet:(id)sender {
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:@"firstvalue", @"firstkey", @"secondvalue", @"secondkey", nil];
NSData *result =[NSJSONSerialization dataWithJSONObject:dict options:0 error:&error];
NSURL *url = [NSURL URLWithString:@"http://shred444.com/testpost.php"];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:[NSString stringWithFormat:@"%d", jsonRequestData.length] forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody:jsonRequestData];
NSURLResponse *response = nil;
NSError *error = nil;
NSData *result = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
I know the php page gets called, and writing to the database is confirmed,
The first couple of lines in my php file grab the POST data
<?php
// Put parameters into local variables
$email = $_POST["firstkey"];
...
but for some reason, $email is also an empty string. I have a feeling the problem is in the iOS code, because I can use APIkitchen.com to test my page and I can confirm it works (only if I exclude the Content-type and Content-Length fields)