无法向php服务器发送额外的变量

时间:2016-03-12 14:12:20

标签: java php android upload server

我已成功将文件上传到我的php服务器。

但是,向服务器发送额外信息不起作用。

我的代码如下:

conn.setRequestProperty(Config.KEY_COURSE_TITLE, course_title);// trying to send course_title (a string variable) to php server

$course_title= $_POST['course_title']; // trying to access sent data

完整代码:http://paste.ubuntu.com/15358822/

1 个答案:

答案 0 :(得分:0)

[从评论中添加为答案]

尝试网址查询参数。参考这个 - How to get parameters from a URL string?