如何自动提交基于会话的表单?

发布于 2024-08-29 04:21:34 字数 163 浏览 8 评论 0原文

我有一个表格,想用脚本提交它。 我将使用 php 中的curl 函数来完成此操作。 但表单不是直接提交的。

它有 3 个步骤,在每个步骤结束时,它将输入的值存储在会话变量中,最后一步将记录插入数据库,并从会话中读取值。

是否可以使用curl自动提交此表单? 最好的解决方案是什么?

i have a form and want to submit it with a script.
i'm going to use curl function in php to do it.
but the form is not submit directly.

it have 3 steps and at the end of each step it store entered value in session variables and at the final steps it insert record to database with the values are read from sessions.

it is possible to do auto submit this form using curl or not?
what is the best solution for it??

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

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

发布评论

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

评论(2

潦草背影 2024-09-05 04:21:34

您应该使用curl 的--cookie-jar 参数来存储每个请求返回的cookie。

You should use the --cookie-jar argument to curl to store the cookies that are returned with each request.

热血少△年 2024-09-05 04:21:34

一种解决方案是将其作为一项工作来执行。将此信息存储在您的数据库中,而不仅仅是会话,并查询对您网站发出的每个请求的待提交

One solution would be to perform it as a job. Store this information in your database instead of just the session and query for pending submissions with every request made to your site.

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