编码第一个 php 购物车 - 需要建议

发布于 2024-09-18 21:57:28 字数 255 浏览 4 评论 0原文

我是一个 php 菜鸟,正在尝试我的第一个购物车。我打算在购物车准备好后使用贝宝结账。我玩得很开心,但需要帮助。

这是我到目前为止得到的:futurekode.com/uikits/store.php

我正在使用表单发布将数量发送到 cart.php 页面。

我的问题是如何使用产品名称和价格等所有信息填充 cart.php 页面上的表格?我需要设置数据库还是可以使用隐藏输入?

任何建议和示例代码表示赞赏

提前致谢

I'm a php noob attempting my first shopping cart. I intend to use paypal checkout when the cart is ready. I'm having fun playing with this but need assistance.

Here is what I got so far: futurekode.com/uikits/store.php

I'm using form post to send the quantities to the cart.php page.

My question is how do I populate the table on the cart.php page with all the info like product name and price? Do I need to setup a database or could I use hidden inputs?

Any advice and sample code is appreciated

Thanks in advance

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

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

发布评论

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

评论(3

柳若烟 2024-09-25 21:57:28

为了持久性,数据库将是首选,但您可以使用 会话 这比隐藏要好得多输入。

Database will be the preference, for persistence, but you can use a session which will be much better than hidden inputs.

若沐 2024-09-25 21:57:28

作为一个自认的 PHP“菜鸟”,使用免费的购物车系统(例如 )不是更好吗? Zen Cart 还是 Cube Cart

这些预先存在的购物车将能够为您提供更快的解决方案,因为您无需对其进行编码,并且可能具有更好的安全性,甚至可以与 PayPal 集成。

As a self-admitted PHP 'noob', would it not be better for you to use a free shopping cart system such as Zen Cart or Cube Cart?

These pre-existing shopping carts will be able to offer you a much quicker solution as you won't need to code them, will likely have better security in place, and even integration with PayPal.

呆° 2024-09-25 21:57:28

正如您所说,您会欣赏一些代码,让我首先为您提供 PHP Paypal SDK 的链接,您可以使用以下选项进行结帐 PAYPAL PHP SDK

 DoDirectPayment - Sale
 DoDirectPayment - Authorization
 ExpressCheckout - Sale
 ExpressCheckout - Authorization
 ExpressCheckout - Order
 DoDirectPayment - 3DSecure - Sale 

只需从这里下载 php 的 sdk 即可反映您的 paypal 测试帐户更改并享受代码

As you said you will be appreciating some code let me first give you the link for PHP Paypal SDK with which you can use following options for your checkout PAYPAL PHP SDK

 DoDirectPayment - Sale
 DoDirectPayment - Authorization
 ExpressCheckout - Sale
 ExpressCheckout - Authorization
 ExpressCheckout - Order
 DoDirectPayment - 3DSecure - Sale 

Just download sdk for php from here reflect your paypal test account changes and enjoy the code

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