我有 html 表单,我必须在该表单所在的同一页面上提交该表单,添加 POST 变量,然后所有变量都传递到下一页。我试过这个:
<form method="POST" action="">
<input type="TEXT" name="names" />
<input type="TEXT" name="email" />
<input type="submit" name="send" />
</form>
然后是这个 PHP 代码:
if($_POST['send']){
$_POST['digest'] = "someText here";
header("HTTP/1.0 307 Temporary redirect");
header("Location:https://nextpage.com/form");
}
但是当我被重定向到另一个页面时,除了“$_POST['digest']”之外的所有 POST 数据都被发送。我该怎么办?
感谢和抱歉英语不好。