如何在php中为其他网站创建公共表单?

发布于 2024-09-07 10:22:25 字数 110 浏览 12 评论 0原文

您好,我需要一份公共订购表来为我的网站中的注册用户提供服务。我可以向用户提供一个链接,然后用户可以将该链接复制粘贴到他们自己的网站。如果有人从用户网站订购。详细信息必须保存在我的网站中。如何创建这样的页面。

Hi I need a public order form to provide registered users in my site. I can give a link to the users then user can copy paste that link to their own sites. If any person order via from the user site. the details must be saved in my site. How can create that kind of a page.

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

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

发布评论

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

评论(1

抠脚大汉 2024-09-14 10:22:25

有几种方法:

  • 向用户站点提供 HTML 表单,然后让该表单提交到您的站点。您的站点将存储信息,然后重定向到用户站点。
  • 同样,让用户站点使用 iframe 或某些 javascript 包含表单。
  • 让表单提交到用户站点,并让他们通过向您的站点提交一些数据来通知您订单。这可以使用 Curl 或 SOAP 等来完成。

There are several ways:

  • Provide the user sites with the HTML form the form, and let the form submit to your site. Your site would store the information and then redirect to the user site.
  • Similarly, let the user sites include the form using an iframe or some javascript.
  • Let the form submit to the users site, and let them inform you of the order by submitting some data to your site. This can be done using Curl, or SOAP, or such.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文