我已经为任何一个如何收取交易费用的人找到了解决方案:
在PayPal IPN表单上添加
<input type="hidden" name="handling" value="[amount extra]">
我目前有一个包含3个计划的PHP脚本,该服务是用户注册和销售产品的地方。目前我的代码通过PayPal工作,然后他们购买了产品但是有了免费计划,我没有收回存储等钱,所以我想收取交易费,但我无法在网上找到任何有用的东西。我自己编写了一个实验程序,但它只是没有工作,所以我想我要求最好的编码社区提供一些指示。
**select buy now** > check price and work out 2% fee and deduct from sellers profit and send to company account (only if on free plan) > go to **paypal and get product**
*中的位表示我已编码并开始工作我只是遇到了中间步骤的问题,所有人都非常感激。
我尝试的代码是
deduct = '2%'
if{
$sellerprice = actual
$transaction = deduct
$total = number_format($sellerprice - $transaction 2);}
else{
header('Location: $paypal_url');
}
你可以说它并没有真正意义,而我只是在玩耍。