我需要从iOS应用程序访问PHP的POST。我似乎无法让它工作。
这是PHP的一个非常简短的片段:
$post_data = $_POST["function"];
if ($function == 'post_data') {
//do stuff, not important
else if($function == 'send_stuffz') {
//do stuff, not important
}
如何访问此部分代码?
我认为它可能只是通过以下网址:
fakewebsitename.com/file.php?function=post_data
fakewebsitename.com/file.php?function=send_stuffz
但这不起作用。
在iOS应用程序中,到目前为止我有这个:
NSMutableURLRequest *urlReq = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:baseURL]]; <-baseURL = fakewebsitename.com/file.php in this "instance"
[urlReq setHTTPMethod:@"POST"];
不确定如何继续...
答案 0 :(得分:2)
此功能不正确
$post_data = $_POST["function"];
if ($function == 'post_data') {
//do stuff, not important
else if($function == 'send_stuffz') {
//do stuff, not important
}
您没有定义变量$function
,请按以下方式更改
请转到
$post_data = $_POST["function"];
if ($post_data == 'post_data') {
//do stuff, not important
else if($post_data == 'send_stuffz') {
//do stuff, not important
}