为什么paypal没有从这些变量形式中获取运费值,
<input type="hidden" name="shipping" value="<?php echo number_format($cost_shipping,2); ?>">
或
<input type="hidden" name="shipping_1" value="<?php echo number_format($cost_shipping,2); ?>">
或
<input type="hidden" name="shipping" value="<?php echo number_format($cost_shipping,2); ?>">
<input type="hidden" name="shipping2" value="<?php echo number_format($cost_shipping,2); ?>">
除非我使用postage and handling
变量, 0.00
始终在paypal沙箱上显示handling_cart
,
<input type="hidden" name="handling_cart" value="<?php echo number_format($cost_shipping,2); ?>">
paypal沙盒有问题吗?