PHP 在哪里存储提交的表单值?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不存储在任何地方,这些值仅在提交表单时在
$_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.