在 PHP 中同时处理多个表单
我需要制作一个动态生成一定数量的表单并处理它们的应用程序。用户应该能够单独处理每个表单,而无需重置其他表单中输入的值。
我现在拥有的是一个主表单,它使用 JS 生成一些表单。这些表单都是相同的(即我迭代 include("myForm.php")。
我的问题是每次提交一个表单时,其他表单中的值都会重置。我该如何解决这个问题?
I need to make an application which dynamically generates some number of forms and processes them. The user should be able to deal with each form individually without resetting the entered values in the other forms.
What I have right now is a master form that uses JS to generate some number of forms. The forms are all the same (i.e. I iterate on include("myForm.php").
My problem is that every time I submit one form, the values in the other forms get reset. How do I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个三步过程:
This is a three-step process:
使用 AJAX 发布表单,这不会刷新页面,因此您不会丢失在其他表单中输入的值
Post the form with AJAX, this doesn't refresh the page so you won't lose the values entered in the other forms