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 表单,并将所有变量(“名字”、“姓氏”等)存储在GET数组中。
GET
在提交表单时,我需要在GET数组中传递一个额外的变量,让 PHP 控制器知道显示下一组提示。像step=2.
step=2
我尝试做的是将表单操作设置?step=2为?step=2&. 但是,无论我尝试什么,表单的变量都显示在 URL 中。
?step=2
?step=2&
我究竟做错了什么?这甚至可能吗?
您可以在表单中使用隐藏的表单域:
<input type="hidden" name="step" value="2">
$_SESSION['step'] = 2;
PS:或会话变量 XD
萨卢多斯。