Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试解决这个问题:
基本上,用户填写 HTML 表单然后提交。然后他们被重定向到另一个页面,在那里他们填写另一个表格。这两种形式最终都被 PHP 使用$_POST. 如何在第二个表单中保留第一个表单中的信息以便两者都提交?
$_POST
将第一个表单中的字段回显到第二个表单的隐藏字段中:
<输入类型='隐藏'名称='名称'值='值'>
尝试使用
<input type="hidden" name="something" value="<?php echo "{$_POST['fromoldpage']}";?>"/>