我有一个 php 表单,它正在工作。使用该表格,我连接到数据库,从中获取数据。:-) 当我使用 Mac/笔记本电脑中的表格时,我可以输入 sata 并得到结果。
当我尝试在此处连接此代码时。我可以传递表单,并建立与 DB 的连接,但我的查询(我输入国家/地区)是空的。所以我假设它没有发送或附加到 url。
可能是什么问题呢?
这是代码:
// NSString *myRequestString = [[NSString alloc] initWithFormat:@"&country=Germany"];
// NSData *myRequestData = [ NSData dataWithBytes: [ myRequestString UTF8String ] length: [ myRequestString length]];
// NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [ NSURL URLWithString: @"THE URL" ]];
// [ request setHTTPMethod: @"GET" ];
// [ request setHTTPBody: myRequestData ];
表格:
<html><body>
<form action="connect.php" method="GET">
Country: <input name="country" type="text" />
<input type="submit" />
</form>
</body></html>
完成..表单有效,但我无法从我的 iPhone APP 发送数据:-(
希望你能指出我正确的方向。