我正在关注在线视频教程,将数据发送到 php 文件,然后将其存储在数据库中。
我真的很困惑它是如何工作的,因为没有帖子?它只是从变量中收集信息。我很少有 youtube 评论说同样的话,但有些他的作品如何?
到目前为止我的代码...
- (IBAction)Submit:(id)sender {
NSString *strURL = [NSString stringWithFormat:@"http://www.bigwavemedia.co.uk/ios/contact.php?name=%@", nameField.text];
//to execute php code
NSData *dataURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];
NSString *strRes = [[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding];
NSLog(@"%@", strRes);
}
当我点击提交按钮时,尽管它已链接,但我没有得到任何回应?