我正在尝试设置一个php站点来处理与c应用程序的mysql数据库的连接。但是我无法让c应用程序和php站点之间的通信正常工作。我总是得到一个“406不可接受”的错误。
下面是来自php的代码。
<?php
header("Content-type: text/plain");
echo "test";
?>
这是c部分。
var request = (HttpWebRequest)WebRequest.Create("http://manoest.dk/UpdateValue.php");
request.Accept = "text/plain";
var test = request.GetResponse();
//WebClient client = new WebClient();
//client.Headers.Add("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8");
//string test = client.DownloadString("http://manoest.dk/UpdateValue.php");
我对c#很有经验,但对php完全陌生。希望你能帮助我。
暂无答案!
目前还没有任何答案,快来回答吧!