PHP 在哪里存储提交的表单值?

发布于 2024-11-08 00:13:51 字数 84 浏览 0 评论 0原文

php webform 数据存储在哪里?如果表单没有连接任何数据库,那么提交的信息存储在哪里?如果它存储在客户端的cookie中,我以后如何处理这些信息?

Where does php webform data stores? If the form does not connected to any database, where does submitted information stores? If it is stores in client's cookies, how can I process these information later?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遗失的美好 2024-11-15 00:13:51

它不存储在任何地方,这些值仅在提交表单时在 $_POST$_GET 数组中可用,并且由您来执行某些操作他们。一旦脚本终止处理,这些值就会丢失。

It´s not stored anywhere, the values are only available in the $_POST or $_GET array when the form is submitted and it´s up to you to do something with them. The values are lost as soon as the script terminates processing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文