我正在使用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
}
答案 0 :(得分:1)
您可能更容易将所有商品ID收集到订单ID中,然后将该订单ID与您的POST一起发送到PayPal。一旦IPN返回您的详细信息,请检查并计算订单ID中所有项目的总和,与IPN所说的支付金额相匹配。
在数据库中查询订单ID并获取与其相关的所有商品ID,然后减少每个商品ID的库存号。
希望它有所帮助。这只是一种方式!
答案 1 :(得分:0)
目前尚不清楚你在问什么。我为网站付款专业版写了一个PayPal IPN监听器。我从这里PayPal Documentation: IPN Sample Code开始,然后根据需要更改代码。请在您的问题中添加更多详细信息。