我想請求用POST,一個URL解析參數,但mypage.php沒有收到這個參數不工作... 這裏是我的代碼:NSURLConnection的使用POST
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://myurl/mypage.php"]];
NSString *params = [[NSString alloc]initWithFormat:@"name=%@&surname=%@&location=%@&email=%@&password=%@&gender=%@&tipo=%@", name, surname, location, email, password, gender, tipo];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:[params dataUsingEncoding:NSUTF8StringEncoding]];
NSLog(params);
NSURLConnection *conn=[[NSURLConnection alloc] initWithRequest:request delegate:self];
if (conn) {
webData = [[NSMutableData data] retain];
}
else
{
}
和mypage.php
if($_POST['name'] != "" && $_POST['email'] != "")
//Here the $_POST['name'] and the $_POST['email'] are empty...
請仔細閱讀說明書中對於「Xcode的」標籤。這不適合你的問題。 – rmaddy
只是一個提示:任何時候你的標題有問題「<一些語言特性>不起作用」你瞬間偏見你很多讀者。在所有的概率<一些語言功能>工作得很好,但你根本不知道如何使用它。 –