Here's my Objective-C code:
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
@"fname", @"fname",
@"age", @"age",
nil];
NSMutableURLRequest *request = [httpClient requestWithMethod:@"POST" path:@"testpost.php" parameters:params];
Here's my code in PHP:
Welcome <?php echo $_POST["fname"]; ?>!<br />
You are <?php echo $_POST["age"]; ?> years old.
However, when I get the response back in Obj-C, all I see is:
success:
Welcome !
You are years old.
What am I doing wrong? :(
NSURLRequestobject, and doesn't show the code for creating and starting the operation (e.g. usingAFHTTPClient -HTTPRequestOperationWithRequest:success:failureandAFHTTPClient -enqueueHTTPRequestOperation:. Could you please add that to your original question? – mattt Dec 24 '11 at 21:44