データベースのフィールドをインクリメントするPHPスクリプトを実行しようとしています。スクリプトが機能していて、現在ASIHTTPRequestを使用してデータベースを完全に変更していますが、リターンが必要ないため、別のメソッドを使用する必要があるように感じます。
これはHTTPPOSTと呼ばれるものですか?
incrementOrDecrementURL = [[NSString alloc] initWithFormat:@"http://myURL/doScript.php"];
NSURL *requestURL = [[NSURL alloc] initWithString:incrementOrDecrementURL];
//The actual request
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:requestURL];
// Becoming the request delegate
//To get callbacks like requestFinished: or requestFailed:
[request setDelegate:self];
// Start request
[request startAsynchronous];