Paypal 对个别项目征税

Paypal 对个别项目征税,paypal,e-commerce,Paypal,E Commerce,我想在Paypal中增加个人物品的税收设置。例如,我希望“一元一角”的税率为12%,而其余“二元二角”、“三元三角”、“四元四角”和“五元五角”的税率为5% <option value="">--- Or Select a Type of Service ---</option> <option name="tax_1" value="One $1">Hello $20</option> <option value="Two $2">B

我想在Paypal中增加个人物品的税收设置。例如,我希望“一元一角”的税率为12%,而其余“二元二角”、“三元三角”、“四元四角”和“五元五角”的税率为5%

<option value="">--- Or Select a Type of Service ---</option>
<option name="tax_1" value="One $1">Hello $20</option>
<option value="Two $2">Bye $30</option>
<option value="Three $3">Tata $45</option>
<option value="Four $4">Bonjour $40</option>
<option value="Five $5">Au Rrevoir $30</option>
---或选择一种服务类型---
你好,20美元
再见,30美元
塔塔45美元
你好,40美元
奥雷沃30美元
因此,我在表单操作中使用:

<input type="hidden" name="tax_rate" value="12">
<input type="hidden" name="tax_1" value="6">

但“一美元一个”的6%税是不起作用的。我怎样才能使它工作呢

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="pointblanc@hotmail.com">
<input type="hidden" name="item_name" value="<?php if($tutorial_type!="") echo $tutorial_amount_arr[0]; else echo "Gift Certificate" ?>">
<input type="hidden" name="item_number" value="Gift Certificate">
<input type="hidden" name="amount" value="<?php if($amountfull="") echo $tutorial_amount_arr[1]; else echo $tutorialamnt; ?>">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="tax_rate" value="12">
<input type="hidden" name="tax_1" value="6">
<input type="hidden" name="return" value="http://www.testtest.com/thankyou.php">
<input type="hidden" name="cancel_return" value="http://www.testtest.com">
<input type="hidden" name="notify_url" value="http://www.testtest.com/ipn.php"/>
<input type="image" border="0" src="https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif" align="center" style="margin-right:7px; margin-left:150px">
<input type="hidden" name="custom" value="<?php echo $allcontens; ?>"/>
</form>