如何使用php标头功能发送HTTP发布请求(例如使用html表单

时间:2019-06-18 10:01:49

标签: php http redirect post header

我想通过php中的发布请求将重要数据发送到另一个站点,并发重定向到该站点 如果我使用html <form>来解决此问题,则用户可以停止进程并更改数据

在curl和其他方法中无法重定向到url。

我发现了这个被剪断的代码:

header("POST $path HTTP/1.1\r\n" );
header("Host: $host\r\n" );
header("Content-type: application/x-www-form-urlencoded; charset=UTF-8\r\n" 
);
header("Content-length: " . strlen($data) . "\r\n" );
header("Connection: close\r\n\r\n" );
header($data);

但是,当运行此代码时,请给我保存文件,例如强制下载和发信头未发送

此操作我无法使用html <form>,因为用户可以更改表单字段的值

希望我的问题很清楚

谢谢

0 个答案:

没有答案