我可以在同一文件中仅通过 php 提交表单并将记录添加到数据库而不使用 Get/Post 方法吗?
假设我已经创建了一个注册表。现在,要将记录添加到数据库中,我们通过 POST 方法将数据发送到另一个 php 文件,在其中进行一些验证并添加记录。是否可以在同一个文件中执行此操作,而无需通过 POST/GET 发送和获取数据?如果不是,那为什么?
编辑:即使发送到同一个 php 文件也会发送并丢失资源。我问这个问题是因为我想避免通过 GET/POST 发送和通过相同的 Get/POST 获取所浪费的时间。如果不可能,我想了解为什么 PHP 不允许。
Say I have create a registration form. Now to add records into a DB, we send the data to another php file by POST method, where we do some validations and add a record. Is it possible to do it in the same file without sending and getting the data by POST/GET? If no, then why?
EDIT: Even sending to the same php file is SENDING and losing resource. I ask this question because I want to avoid the lost of time on sending by GET/POST and getting by the same Get/POST. And if it is not posible, I want to understand why PHP does not allow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
不可以。您始终必须将数据从客户端发送到服务器,这是没有办法解决的。
如果您不想重新加载用户所在的整个页面,您可以通过 AJAX 将数据提交到负责处理数据并添加数据的 php 文件。这样用户就永远不会离开页面。
No. You always have to send data from the client to the server, there is no way around that.
If you dont want to reload the entire page the user is on, you could submit the data via AJAX to the php file responsible for processing it and adding the data. That way the user never leaves the page.
是的当然。
只需在您的表单“action”中放入
PHP 页面的开头,检查 $_POST 是否已设置,
当然您可以添加一个隐藏的输入标记来细化 $_POST 的检查。例如在你的表格中
那么你的支票应该是这样的
yes ofcourse.
just in your form "action" put
then in the beginning of your PHP page check if the $_POST is set or not
ofcourse you can add a hidden input tag for refining checks for the $_POST. eg in your form
then your check should be like
这是有可能的。例如:
It's possible. For example:
是的,可以设置
表单标签中的 。
您可以在同一页面上访问所有表单属性。
Yes it is possible set
in form tag.
you can access your all form attributes on same page.
是的,这很容易。该表单可以回传到其自身。这是最容易完成的,甚至不需要在表单标记中指定操作的值。
然后在页面顶部添加任何内容之前,添加一个 if 语句来检查表单是否已提交。
从那里进行验证并根据结果采取行动。
如果您需要进行大量验证,也许可以将其放入另一个文件中并包含它。
如果一切顺利并且所有测试都通过,则使用
如果测试失败,则停留在保留所有发布数据的页面上,并显示错误。
Yes it is easy. The form can post back to its self. This is most easily done by not even specifying the value of action in the form tag.
Then at the top of the page before any content is put on the page, include an if statement to check if the form was submitted.
From there do validation and act according to the result.
If you have lots of validation to do, perhaps put that in another file and include it.
If all is well and all tests are passed use
If tests fail, stay on the page keeping all the post data, and display an error.