Send POST array

CigFalaffinny

New Member
i wish to send some data as array from my iphone app to serverWhen i was posting single variables before i was sending the post as an NSString \[code\]NSString *post =[[NSString alloc] initWithFormat:@"userName=%@&accountID=%@&", username,accId];NSData *postData = http://stackoverflow.com/questions/3573773/[post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease]; [request setURL:url]; [request setHTTPMethod:@"POST"]; [request setValue:postLength forHTTPHeaderField:@"Content-Length"]; [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; [request setHTTPBody:postData];\[/code\]Now i wish to send an array of these usernames and accountIds, how do i send an NSArray in a POST and then in php on my server how can i retrieve it?Thanks
 
Back
Top