gpt4 book ai didi

php - 用于购物车的 Paypal IPN 处理程序

转载 作者:太空宇宙 更新时间:2023-11-03 15:49:45 25 4
gpt4 key购买 nike

我在我的网站上使用 PayPal“立即购买”按钮来销售产品。因为我在 MySQL 数据库中跟踪每个产品的库存单位数量,并且我希望系统中的库存跟踪能够自动化,所以我使用 PayPal 的即时付款通知功能让我知道何时购买完全的。当 Paypal 通知我的处理程序已进行有效购买时,脚本会通过从所购买产品的库存中减去“1”来更新我的 MySQL 数据库。

我在下面附上了我的 IPN PHP 代码,它成功地与 Paypal 立即购买按钮(一次购买一次)一起使用。

我的问题是:我想用 PayPal 的“添加到购物车”按钮替换“立即购买”按钮,以便客户可以一次购买多个产品。我不确定我必须如何更改下面的代码以让它遍历所有购买的项目并相应地更新我的数据库。任何帮助将不胜感激!

代码:

    // Paypal POSTs HTML FORM variables to this page
// we must post all the variables back to paypal exactly unchanged and add an extra parameter cmd with value _notify-validate

// initialise a variable with the requried cmd parameter
$req = 'cmd=_notify-validate';

// go through each of the POSTed vars and add them to the variable
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}

// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

// In a live application send it back to www.paypal.com
// but during development you will want to uswe the paypal sandbox

// comment out one of the following lines

$fp = fsockopen ('www.sandbox.paypal.com', 80, $errno, $errstr, 30);
//$fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30);

// or use port 443 for an SSL connection
//$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);


if (!$fp) {
// HTTP ERROR
}
else
{
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {


$item_name = stripslashes($_POST['item_name']);
$item_number = $_POST['item_number'];
$item_id = $_POST['custom'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross']; //full amount of payment. payment_gross in US
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id']; //unique transaction id
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];
$size = $_POST['option_selection1'];
$item_id = $_POST['item_id'];
$business = $_POST['business'];



if ($payment_status == 'Completed') {
// UPDATE THE DATABASE


}

最佳答案

将所有商品 ID 收集到一个订单 ID 中,然后将该订单 ID 与您的 POST 一起发送到 PayPal 可能会更容易。一旦 IPN 返回您的详细信息,请检查并计算订单 ID 中所有项目的总金额是否与 IPN 所说的已支付金额相符。

在您的数据库中查询订单 ID,并获取所有与之关联的商品 ID,然后减少每个商品 ID 的库存数量。

希望对您有所帮助。这只是一种方法!

关于php - 用于购物车的 Paypal IPN 处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2650037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com