如何从购物车中获取多个产品到贝宝付款

Posted

技术标签:

【中文标题】如何从购物车中获取多个产品到贝宝付款【英文标题】:how to get multiple products from cart to paypal payment 【发布时间】:2015-10-27 17:48:49 【问题描述】:

我想在 paypal 支付页面上获得多个产品。我目前只得到一个第一款产品。有人可以帮我解决我错的地方。下面是我的代码..我搜索了谷歌,发现还有两件事要改变。即 _xclick 到 _cart 和另外一个 <input type='hidden' value='1' name='upload'/>

现在我发现你的购物车是空的。

$query = mysql_query("SELECT * FROM temporderdetails WHERE omid = '$ordermaster_id' " ) or die(mysql_error());


    while($row = mysql_fetch_array($query))

    $productid  = $row['productid'];
    $quantity   = $row['qty'];
    $price = $row['price'];
    $subtotal = $row['subtotal'];


    $query1 = mysql_query("select product_name from products where product_id = '$productid'" ) or die(mysql_error());


    while($row1 = mysql_fetch_array($query1))

    $product = $row1['product_name'];


        <form action='<?php echo $payment_url ;?>' method='post'>
            <input type="hidden" name="cmd" value="_cart">

            <input type='hidden' name='business' value='<?php echo $payment_email;?>'>

            <input type='hidden' name='item_name' value='<?php echo $product;?>'>

            <input type='hidden' name='upload' value='1'>

            <input type='hidden' name='quantity' value='<?php echo $quantity; ?>'>

            <input type='hidden' name='amount' value='<?php echo $grandtotal;?>'>

            <input type='hidden' name='currency_code' value='USD'>

            <input type='hidden' name='return' value='<?php echo $payment_success;?>'>

            <input type='hidden' name='cancel_return' value='<?php echo $payment_failed;?>'>





【问题讨论】:

【参考方案1】:

如果有多个产品,您必须为每个产品使用以下变量: 金额_x item_name_x

其中 x 是产品编号(从 1 开始)。所以,你要做的是这样的:

<form action='<?php echo $payment_url ;?>' method='post'>
    <input type="hidden" name="cmd" value="_cart">
    <input type='hidden' name='business' value='<?php echo $payment_email;?>'>
    <input type='hidden' name='upload' value='1'>
    <input type='hidden' name='currency_code' value='USD'>
    <input type='hidden' name='return' value='<?php echo $payment_success;?>'>
    <input type='hidden' name='cancel_return' value='<?php echo $payment_failed;?>'>

在这里您可以获取所有产品(您的“while”语句),使用计数器变量,然后:

    <input type='hidden' name='amount_<?php echo $counter;?>' value='<?php $price ?>'>
    <input type='hidden' name='item_name_<?php echo $counter;?>' value='<?php echo $product?>'>
    <?php $counter++ ?>

最后关闭表单

</form>

【讨论】:

以上是关于如何从购物车中获取多个产品到贝宝付款的主要内容,如果未能解决你的问题,请参考以下文章

asp.net 将付款发送到贝宝帐户 [关闭]

使用php一次将多个项目提交到贝宝购物车

在后端处理贝宝付款

如何将折扣代码添加到我的购物车并将其发送到贝宝结帐?

为啥我不能再使用 Paypal 自适应付款?

一次性付款的贝宝定期付款