I am currently using the following code to attempt at a NSMutableURLRequest.
NSMutableURLRequest *postRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:allStrings]];
[postRequest setHTTPMethod:@"POST"];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:postRequest delegate:self];
I do not know how to actually initiate the post. What actually fires it off at the URL? I have everything setup but *conn is not being used yet, so how do I use *conn?