贝宝定期付款表格 [英] paypal recurring payments form

查看:97
本文介绍了贝宝定期付款表格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个付款表单的网站,
我想添加周期性付款。
我该怎么做?我需要在表单字段中使用 ID 吗?



我看到一个 WordPress 插件使用 a3 t3 $ b $ $ p $ < code>< code>< input type = hiddenname =a3id =a3value =/>
< p class =donate_recur>< label for =recur>重复捐款< / label>

我不确定 a3 是但是 t3 是交易发生的时间, p3 是发生的次数。



我在网上看到了一些信息,并且发现了如何为某些具有定期付款的产品制作 PayPal 按钮。但我需要它是动态输入的。



谢谢。 解决方案

  a3  - 每次重复发生的金额
p3 - 每次重复期间之间的时间段数
t3 - 时间段(D =天,W =周,M =月,Y =年)


< form action =https://www.paypal.com/cgi-bin/webscrmethod =post>
< input type =hiddenname =cmdvalue =_ xclick-subscriptions>
< input type =hiddenname =businessvalue =me@mybusiness.com>
< input type =hiddenname =currency_codevalue =USD>
< input type =hiddenname =no_shippingvalue =1>
< input type =imagesrc =http://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gifborder =0name =submitalt =付款与PayPal - 它快速,免费,安全!>
< input type =hiddenname =a3value =5.00>
< input type =hiddenname =p3value =1>
< input type =hiddenname =t3value =M>
< input type =hiddenname =srcvalue =1>
< input type =hiddenname =sravalue =1>
< / form>


I have a website with a payment form, I want to add recurring payments. how would i do that? what ID's do I need to use in the form fields?

I saw a WordPress plugin that uses a3 t3 and p3 like so:

    <input type="hidden" name="a3" id="a3" value="" />
<p class="donate_recur"><label for="recur">Repeat Donation</label>
<select name="t3" id="t3">
                <option value="0"> Do not repeat </option> 
                 <option value="D"> Daily </option> 
                 <option value="W"> Weekly </option> 
                 <option value="M"> Monthly </option> 
                 <option value="Y"> Yearly </option> 
 </select> x 
<input name="p3" id="p3" value="'.$dplus['duration'].'" type="text" style="width:10px;" />

I'm not sure what a3 is but t3 is ever how long the transaction will happen, and p3 is how many times it will happen.

I looked a little on the web and i found how to make a PayPal button for some kind of product with recurring payments. but I need it to be dynamically inputted.

thank you.

解决方案

a3 - amount to billed each recurrence
p3 - number of time periods between each recurrence
t3 - time period (D=days, W=weeks, M=months, Y=years)


<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="no_shipping" value="1">
<input type="image" src="http://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="a3" value="5.00">
<input type="hidden" name="p3" value="1"> 
<input type="hidden" name="t3" value="M">
<input type="hidden" name="src" value="1">
<input type="hidden" name="sra" value="1">
</form>

这篇关于贝宝定期付款表格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆