gpt4 book ai didi

php - 付款开始时 paypal 中的 amount 变量值变化

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

我在沙盒环境中使用 paypal 功能。我正在实现 paypal 的非常基本的功能。问题在于,当用户购买超过 1 件相同产品时,paypal 中的金额值会成倍增加。我确定我缺少一些要使用的变量,但无法弄清楚。我在服务器端计算的总量。例如,如果买家选择 2 个数量的相同产品,价格将乘以 2 倍,这是 paypal 形式的 amount 变量的值。但是当表单提交到paypal时,amount变量的值变成了item price的值,paypal中的最终金额再次乘以2。

我在这里提供我的 Paypal 表格

<form action="<?php echo $paypal_url; ?>" method="post" name="frmPayPal1">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="xyz@exmp.com">
<input type="hidden" name="item_name" value="<?php echo $_SESSION['itemName'];?>">

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

<input type="hidden" name="item_price" value="<?php echo $price;?>">
<input type="hidden" name="amount" value="<?php echo $z?>">
<input type="submit" name="submit" value="pay">
<INPUT TYPE="hidden" NAME="return" value="return website">

<INPUT TYPE="hidden" NAME="cancel_return" value="return website">

</form>

where $quant is the quantity of product, $price is the price of product,

$z是计算出的总金额($quant * $price)

if $quant=2
$price=1000 per unit of product
then $z = 2000
and in paypal website the values become
Item price: 2000.00
Quantity: 2
Amount: 4000

如果有人可以提供帮助,请。

最佳答案

根据Paypal manual没有名为 item_price 的变量。

数量:

Number of items.

还有数量:

The price or amount of the product, service, or contribution, not including shipping, handling, or tax

所以你应该:

$z = 1000; //price_per_product;
$quant = 2;

关于php - 付款开始时 paypal 中的 amount 变量值变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30498098/

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