表单按钮重定向
这是网站 Iam 建设 - http://dtech.id.lv/lat.php
输入/生成的代码在使用 $_SESSION 提交时传递到 latreg.php
但之后我需要将该用户重定向到此 latreg.php
我该怎么做?
here is the site Iam building - http://dtech.id.lv/lat.php
Entered/generated code is passed to latreg.php on submit with $_SESSION
But after that I need that user is redirected to this latreg.php
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表单的操作属性应用于在提交后重定向用户。
您的代码是否类似于:
The action property of your form should be used to redirect the user after the submission.
Does your code looks like:
<form name="myForm" method="POST" action="./latreg.php">
?