我该如何做到这一点,以便有人在我的网站上填写表格,然后重定向到另一个已填写值的表格?

发布于 2024-09-17 10:19:18 字数 99 浏览 6 评论 0原文

我正在使用 wp 博客,我希望通过电子邮件获得潜在客户,然后参考已填写值的另一个网站?

我想使用 php,但我会使用任何有效的东西。

有谁知道该怎么做?

I am using a wp blog and I want leads to come in to go to be via email and then get refered to another website with the values already filled in?

I want to use php, but i will use anything that works.

does anyone know how to do this?

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

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

发布评论

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

评论(1

南七夏 2024-09-24 10:19:18

在 HTML 中,当标记表单时,您可以指定默认值。例如:

<form>
   <input name="firstName" value="John">
   <input name="lastName"  value="Doe">
   <button type="submit">
</form>

因此,一旦用户从第一个表单提交数据,您就可以在第二个页面中编写 HTML,并将用户的信息放入表单中。默认情况下它会在那里,但如果他/她选择,它可以再次编辑。

我不使用 WP,但我确信您可以获取来自第一个表单的数据,然后在生成下一页时发出相同的数据。

In HTML, when marking-up a form, you can specify default values. So for example:

<form>
   <input name="firstName" value="John">
   <input name="lastName"  value="Doe">
   <button type="submit">
</form>

So, once the user submits data from the first form, you can write the HTML in the second page with the user's information placed into the form already. By default it will be there, but it could be edited again if he/she chooses.

I don't use WP, but I'm sure you can grab the data coming from the first form, then emit the same when generating the next page.

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