下一篇 » « 上一篇

PHP向脚本提交POST数据

作者:爱好者    时间:2008-01-22    来源:php之家    点击:1220    本文共1篇文章 字体:[ ]

PHP向脚本提交POST数据

$name = urlencode($_POST['name'];
$pass = urlencode($_POST['pass'];
$params = "name=$name&pass=$pass";
$length = strlen($params);
$fp = fsockopen("localhost",80,$errno,$errstr,10) or exit($errstr."--->".$errno);
$header = "POST /test/re.php HTTP/1.1\r\n"; ##原来少了个“/”
$header .= "Host:localhost\r\n";
$header .= "Referer:localhost/test/re.php\r\n";
$header .= "Content-Length: ".$lenght."\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Connection: Close\r\n\r\n";
$header .= $params."\r\n"; ##POST方式发送不能接在脚本后面
fputs($fp,$header);
fclose($fp);

发表评论
密码: (游客不需要密码)
记住我【Alt+S 或 Ctrl+Enter 快速提交】

搜索工具


《PHP精通》点击排行