0

嗨,我正在创建一个表格,我想将价格传递给贝宝。我已经复制了一个酱汁示例,但我不断收到上述错误。有没有人有任何想法?

由于卖家网站出现问题,PayPal 无法处理此交易。

在此先感谢 Mikemc。

代码如下

<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="my details">

<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick">

<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="my Product">
<input type="hidden" name="currency_code" value="GBP">

<!-- Provide a dropdown menu option field with prices. -->
<input type="hidden" name="on0" value="test">test<br />
<select name="os0">
  <option value="1page">1 page £40.00 GBP</option>
  <option value="4page">4 page £100.00 GBP</option>
  <option value="6page">6 page £130.00 GBP</option>
 </select> <br />

<!-- Specify the price that PayPal uses for each option. -->
<input type="hidden" name="option_index" value="1">
<input type="hidden" name="option_select0" value="1page">
<input type="hidden" name="option_amount0" value="40">
<input type="hidden" name="option_select1" value="4page">
<input type="hidden" name="option_amount1" value="100">
<input type="hidden" name="option_select2" value="6page">
<input type="hidden" name="option_amount2" value="130">

<!-- Display the payment button. -->
<br>
<input type="image" name="submit" border="0"
src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif"
alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1"
src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >

</form>
4

0 回答 0