paypal订阅、支付信息更新
我正在尝试设计一个网络应用程序(使用 php 和 mysql),在其中我将要求我的客户通过 paypal 订阅付款,它会自动检测客户 paypal 帐户中的资金并将其转移到我的 paypal 帐户。
现在,当客户在 3 个月后登录我的 Web 应用程序时,我的 Web 应用程序是否有办法知道过去 30 天内是否已从客户帐户向我的商家帐户付款。
有什么建议请
I am trying to design a web application(using php and mysql) in which I will ask my clients to pay via paypal subscription, which detects money from the clients paypal account automatically and transfers it to my paypal account.
Now when a client logs into my web application after 3 months of time, is there a way my web application to know if a payment has been made from the clients account to my merchant account in the last 30 days.
Any suggestions please
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你必须建立一个这样的表:
如果客户已经支付了他的订单,你将在这个表中插入一条记录。
您可以使用以下查询检查客户的最后付款:
如果结果大于 0,则您知道过去 30 天内您和客户之间有一笔交易
I think you must set up a table like this:
If the customer has payed his order, you will insert a record in this table.
You can check the last payments for your customer with this query:
If the result is bigger than 0, you know that there was a transaction in the last 30 days between you and your customer