通过httpclient c#将数据发送到php脚本

时间:2013-07-14 14:46:09

标签: c# php

我有一个php脚本,其中包含如下变量:$ devicetoken和$ eventmessage。在c#中使用http客户端如何发送该信息。我不是一个强大的PHP开发人员。谢谢你的帮助

1 个答案:

答案 0 :(得分:1)

最简单的方法是在网址中传递它们,例如C#客户端打开一个类似http://www.example.com?devicetoken=123&eventmessage=Hello%20world的网址!

PHP手册http://php.net/manual/en/reserved.variables.get.php

中的更多信息