Home > Backend Development > PHP Tutorial > PHP向脚本提交POST数据_PHP

PHP向脚本提交POST数据_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-01 12:34:52
Original
996 people have browsed it
$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);

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template