这是我在这里的第一个问题:)
我真的需要一些服务器和 PHP 方面的帮助。这是问题:
我有一个 NSMutableURLRequest 与这样的 php 文件交互:
NSInteger userID = 4;
NSString * logInString = [NSString stringWithFormat:@"id=%i&mode=HARD", userID];
NSData * logInData = [logInString dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [logInData length]];
NSMutableURLRequest * logInRequest = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://myurl.lol/login.php"]];
[logInRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[logInRequest setValue:postLength forHTTPHeaderField:@"Content-Length"];
[logInRequest setHTTPMethod:@"POST"];
[logInRequest setHTTPBody:logInData];
[NSURLConnection sendAsynchronousRequest:logInRequest queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
if ([data length] >0 && error == nil) {
NSString * responseString = [NSString stringWithUTF8String:data.bytes];
NSLog(@"%@", responseString);
[self performSelectorOnMainThread:@selector(responseWasReceived:) withObject:responseString waitUntilDone:YES];
}
else if ([data length] == 0 && error == nil) {
[self performSelectorOnMainThread:@selector(didNotReceivedResponse) withObject:nil waitUntilDone:YES];
}
else if (error != nil) {
[self performSelectorOnMainThread:@selector(errorDidOccurred) withObject:nil waitUntilDone:YES];
NSLog(@"Error = %@", error);
}
}];
我的PHP是这样的:
include("database.php");
if ($_REQUEST['mode'] == 'HARD') {
$query = mysql_query('SELECT COUNT(*) as total FROM users WHERE id = "' . $_REQUEST['id'] . '"');
$fetch_username = mysql_fetch_object($query);
$usernames_coincidences = $fetch_username -> total;
if ($usernames_coincidences == 1) {
exit("ACCESS GRANTED");
} else {
exit("USER DOES NOT EXIST");
}
}
我应该收到“ACCESS GRANTED”字符串,有时它会发生,但有时我会收到一个错误的响应,例如“ACCESS GRANTED¿”或“ACCESS GRANTEDOL”。
有什么问题?你认为我应该在方法中使用同步请求并使用 performSelector:inBackground: 执行它吗?