Problem using NSURLRequest to POST data to server

前端 未结 3 375
-上瘾入骨i
-上瘾入骨i 2020-11-30 23:50

I create an NSURLRequest to post my data in the iPhone application to a server to proceed the PHP script. My PHP script is look like this.



        
3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-01 00:20

    You should remove the leading & in myRequestString and the problem is likely that the correct content-type header is not being sent. Try adding a call to

    [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"content-type"];
    

    You should also not pass nil for error, so you can see what the client thinks is going on.

    Unrelated, but your PHP code is open to SQL injection attacks.

提交回复
热议问题