paypal中的多个自定义字段通知网址表单

时间:2012-09-17 18:23:44

标签: php paypal

Paypal在其API中有CUSTOM参数...我想在CUSTOM字段中传递多维数组...

  <form id="paypal_form" action="https://sandbox.paypal.com/cgi-bin/webscr" method="post">
    <!-- Identify your business so that you can collect the payments. -->
    <input type="hidden" name="business" value="user@paypal.com">
    <!-- 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="Hot Sauce-12 oz. Bottle">
    <input type="hidden" name="amount" value="10">
    <input type="hidden" name="currency_code" value="USD">
    <!-- Prompt buyers to enter their desired quantities. -->
    <input type="hidden" name="quantity" value="1">
    <input type="hidden" name="notify_url" value="http://www.myurl.com" />
    <!-- Display the payment button. -->
    <input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online" />
    <input type="hidden" value="1" name="custom[]" />
    <input type="hidden" value="11" name="custom[]" />
  </form>

单个自定义字段的工作正常,但多个自定义字段无法正常工作...

1 个答案:

答案 0 :(得分:1)

你应该传递所有的值,如1,2,3,4,5,6 ....

返回url,您将获得自定义字符串并将其转换为字符串数组