将 worldpay 示例拼接在一起

发布于 2024-12-19 08:12:38 字数 604 浏览 2 评论 0原文

您好,我目前正在与 worldpay 合作,我想将一些 worldpay 集成示例缝合在一起,我被告知这是可能的,但我个人不知道如何实现。

网站电子商务背后的基础知识是,如果用户选择产品、一些额外选项和送货区域,然后单击“购买”。这与 worldpay http://www 的示例非常相似.worldpay.com/support/kb/bg/examples/example_0/jr_example0.3.html,当用户点击购买时,我想将他们发送到此页面,http://www.worldpay.com/support/kb/bg /examples/example_0/jr_example0.5.html 然后最终将它们带到 worldpay 托管结账页面。

这可能吗?我也应该在哪里提交表格?我如何通过表格程序传递已购买的商品?

Hello I am working with worldpay at the moment, I am want to stich a few of the worldpay integration examples together, I have been told it is possible but I personally cannot see how.

The basics behind the e-commerce of the site, if the users selects a product, some extra options, and delivery region, they then click buy. This is much like this example from worldpay http://www.worldpay.com/support/kb/bg/examples/example_0/jr_example0.3.html, when the user clicks purchase I then want to send them to this page, http://www.worldpay.com/support/kb/bg/examples/example_0/jr_example0.5.html then finally take them to worldpay hosted checkout page.

Is this possible? Where do I submit the forms too? How do I pass what has been purchased through my form procedures?

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

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

发布评论

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

评论(1

写下不归期 2024-12-26 08:12:38

是的,这是可能的。

您将表单提交至https://secure-test.worldpay.com/wcc/purchase

将数据从一个表单传递到下一个表单

1 像这样设置表单

<form action="page2.php" method="POST">

2 在第二页上从 $_POST 获取日期

foreach($_POST as $key => $value)

Yes this is possible.

You submit the form to https://secure-test.worldpay.com/wcc/purchase

To pass data from one form to the next

1 Set your form like this

<form action="page2.php" method="POST">

2 On page two get the date from $_POST

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