2012-02-24 97 views
0

全部! 我有PHP页面是这样的:POST不起作用

<?php 
if(isset($_POST['userid']) and isset($_POST['dlspeed'])) 
{ 
    $userid=$_POST['userid']; 
    $dlspeed=$_POST['dlspeed']; 
    $timestamp =date("y-m-d H:i"); 
    $db_conn = mysql_connect('localhost', "root", "asdk78623r"); 
    mysql_select_db("speedtest", $db_conn); 
    $query='INSERT INTO status VALUE (NULL, "'.$userid.'", "'.$dlspeed.'", "'.$timestamp.'")'; 
    $result=mysql_query($query,$db_conn); 
} 
? 

而且从C#我做一篇:

 HttpWebRequest WebReq = (HttpWebRequest)WebRequest.Create(pageurl); 

       byte[] buffer = Encoding.ASCII.GetBytes(data); 
       System.Net.ServicePointManager.Expect100Continue = false; 
       WebReq.SendChunked = false; 
       WebReq.Expect = null; 
       WebReq.KeepAlive = false; 

       //I try also setting proxy 
       // WebReq.Proxy = new WebProxy("192.168.0.107", 3128); 
       //Our method is post, otherwise the buffer (postvars) would be useless 
       WebReq.Method = "POST"; 
       //We use form contentType, for the postvars. 
       WebReq.ContentType = "application/x-www-form-urlencoded"; 
       //The length of the buffer (postvars) is used as contentlength. 
       WebReq.ContentLength = buffer.Length; 
       //We open a stream for writing the postvars 
       Stream PostData = WebReq.GetRequestStream(); 
       //Now we write, and afterwards, we close. Closing is always important! 
       PostData.Write(buffer, 0, buffer.Length); 
       PostData.Close(); 

       //posted data is not inserted in db 
//and in follow line code Ive got error: The remote server returned an error: (417) //Expectation failed 
       HttpWebResponse WebResp = (HttpWebResponse)WebReq.GetResponse(); 

我做什么了?随着卷曲命令发布工作正常:

curl -d "userid=SW783IC2QDHFYU6P4XKO&dlspeed=814,602968463903&timestamp=2012-2-23 19:29:33" pageurl 

任何想法,建议,重新考虑?

+1

什么问题?错误?不起作用?意外的结果? – deceze 2012-02-24 09:12:42

+0

'如果(isset($ _ POST [ '用户ID'])和isset($ _ POST [ 'dlspeed']))'可以缩短至'如果(isset($ _ POST [ '用户ID'],$ _POST ['dlspeed “]))' – Vitamin 2012-02-24 09:19:05

+5

我们并不需要知道关于MySQL :) – mishu 2012-02-24 09:20:26

回答

0

有多种选择,为什么这会发生。

http://www.checkupdown.com/status/E417.html

其中的一个原因可能是: http://haacked.com/archive/2004/05/15/http-web-request-expect-100-continue.aspx

安装记录您的请求,它们包含fiddler2的伟大工程是什么(是免费的,易于使用的程序,有几个非常相似,但不记得他们的名字ATM)

尝试,看看如果你发现不应该存在任何头,如果你不能在这里你的生活指点迷津的人可以帮助你,一旦你张贴。