Billdesk payment integrations in php - php

I am trying to find ways to integrate bill desk payment in php , but i am not able to find
any code snippet in php , However there are no any clues for sandbox environment in billdesk
Can any one please give me right steps to integrate billdesk with php?

The bank itself would be expected to provide such tutorials.
If you can't find any on their site, then it's unlikely that you'll find them elsewhere unless it's a bank that's already very widely used for online transaction processing. Call them and ask them what help they can provide. Banks I've worked with have always been very happy to help.
Rather than just integrating into your website, it can be helpful to use an existing, popular shopping cart system e.g. Ubercart, which will have a lot of the code you need already in place and will have examples of where similar plugins has been done with other banks, e.g. here.

Related

Updating Customer Credit Card with PHP & Stripe

I am trying to add this script to my Wordpress website that I found on Stripes documentation but I am a little confused as to how to enhance it more to know when the user already has a card on file it needs to update it rather than creating that customer again.
The code I was originally using can be seen here:
https://gist.github.com/bateller/154c6e5d1f6e0e53e527
This is that code with my edits to try and make it update:
http://pastebin.com/B3LXZpWq
I can't find any information anywhere that seems to make sense to me. Hopefully someone can break it down and help me understand before I loose my mind.
Take a look at Managed Accounts
Stripe - Managed Accounts - https://stripe.com/docs/connect/managed-accounts
You get a greater freedom when it comes to things like updating details and it is also a little stricter but worth it for the added API features.

PayPal DoAuthorization, DoCapture and DoVoid

I am creating a website for auctions using Paypal. Clients pay a small fee to participate,
and when the offer falls on someone, the others recover their money.
How do I implement DoAuthorization, DoCapture and DoVoid (NVP) methods in php? I didn't find any tutorial for this case.
Did you take a look at the code samples here? There are PHP samples for all 3 of these on this page, for both DoDirectPayment and the Express Checkout API's. The SDK's are also very useful as they have all of the code samples as well for PHP. Between the samples and the SDK's, these will give you a working example, something to build off of.

Paypal integration confusion

I'm designing a database system, which sells courses to students. This is all done within PHP. I want to take Paypal payments on my website and having done some research I need IPN.
I've been reading docs/guides on how to achieve this from www.x.com but its quite confusing to find info I need as there seems to be more than one way of doing something. The IPN stuff looks pretty straight forward, paypal just needs the unique Invoice number, which the notify script uses to retrieve the record and post the appropriate response into a database and if all goes well, redirect page to a thank you.
The thing is which method do I initially send my values across to Paypal, I don't really want to pass on quantity and shipping data as all of these pieces of data are irrelevant I don't want my end user to see. Do I have to start looking at using the paypal api?
Thanks for the advice
Since your question seems to be "where should i start looking for a good paypal integration with php" i'll give you some general "advice". I had the same problem just a couple of months ago.
Yes you've to read paypal docs, and unfortunatly they don't have the gift of clarity.. very complete but i didn't find them very clear.
However this php class has been very helpful for my similar project: https://github.com/Quixotix/PHP-PayPal-IPN hope can help you too.
Also these articles/classes/docs has been helpful (but at the end i'm not using them) to clear my mind about PP integration:
http://drewjoh.com/wiki/code/classes/phppaypal
http://www.geekality.net/2011/05/28/php-tutorial-paypal-instant-payment-notification-ipn/
set up a sandbox account https://developer.paypal.com/
then go through some of the tutorials
you will also need to set up some test accounts, pay attention to the nav on the left (from the developers page). It has everything you need

paypal integration in php

First time I am starting to implement the paypal integration. Please tell me how to write code for a payment gateway(paypal) in php and it will be better if you will show a good demo from where I can get some ideas.
There are several sources on the net where you can find detailed information regarding paypal integration (with php). Here is one to be named:
Paypal

How to integrate billdesk payment gateway in my php website so that i can make transactions from indian bank

I want to integrate billdesk payment gateway in my php website. So that i can make transactions from indian banks. I am new to this so please help me out. If it is possible than send me the link of any tutorial.
Generally speaking, the bank itself would be expected to provide such tutorials. If you can't find any on their site, then it's unlikely that you'll find them elsewhere unless it's a bank that's already very widely used for online transaction processing. Call them and ask them what help they can provide. Banks I've worked with have always been very happy to help.
Rather than just integrating into your website, it can be helpful to use an existing, popular shopping cart system e.g. Ubercart, which will have a lot of the code you need already in place and will have examples of where similar plugins has been done with other banks, e.g. here.

Categories