Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

John Conde's Blog:
Handling Online Payments With PHP And Authorize.Net
Dec 13, 2011 @ 20:05:14

John Conde has shared his multi-part guide to getting your application integrated with the popular payment service Authorize.net.

As an Authorize.Net blogger, I decided to write a series of articles that outlined not only the basics of handling an ecommerce transaction, but also included some best practices as well. These were demonstrated using a web-based payment form that when complete forms a real-world, production ready solution. Since there was a lot of ground to cover, I broke the tutorial into eleven parts.

Parts of the series cover topics like:

For those that want to jump straight into the code, he also links to his sample payment form and the Authorize.net PHP SDK.

tagged: online payment authorizenet tutorial series

Link:

Zend Developer Zone:
Accepting Credit Card Payments with OXID eShop CE and Authorize.Net
Jun 26, 2009 @ 21:48:14

The Zend Developer Zone has a new post from Vikram Vaswani about accepting credit card payments through Authorize.net in the OXID eShop CE (e-commerce platform).

Now, if you're planning to start an online store, it should be pretty clear that accepting electronic payments isn't an option - it's a necessity for you to compete effectively. And that's where this article comes in. Over the next couple of pages, I'll show you how to begin accepting credit card payments for your products using the open source OXID shopping cart and the Authorize.Net payment gateway...with, of course, a little bit of PHP to make things interesting!

The glue between the OXID install and Authorize.net is created with the PEAR HTTP_Request2 package. This combined with a little extra PHP code can be installed and used as a component directly inside the application. He gives full code and screenshots to help you get it up and running on your install.

tagged: httprequest2 pear oxidshop authorizenet

Link:

Shaun Oleson's Blog:
Authorize.NET and PHP
Nov 07, 2008 @ 17:20:59

Shaun Oleson has posted his method (a chunk of code to do it) to connect to the Authorize.NET servers and make a request:

So I've had quite a bit of experience with authorize.NET and PHP and I've found it's difficult to find resources that provide textual examples for integrating the payment processor. I've put together a generic tutorial from documentation that is public. Of course, you will have to specify your Transaction ID and API Login ID. So here you are. If you need assistance or have any questions, feel free to leave a comment.

His example is a large get_auth() function that takes in the credit card information (including billing address) and makes a cURL connection to their servers for the request.

tagged: authorizenet tutorial getuauth curl function transaction api

Link:

GoodPHPTutorials.com:
Integrating the Authorize.Net AIM API with PHP
Sep 26, 2008 @ 18:05:55

On the GoodPHPTutorials.com website there's a new tutorial showing how to get the Authorize.net API to talk back and forth between it and your application.

I have taken the time to abstract the AIM API into my own class that not only simplifies the code we will need to work with that API but also makes it modular and easy to port from application to application. To begin you will need to download the AuthnetAIM class. You can find it here.

He walks you through the setup and configuration of the library and includes a few examples of how to make both simple and more complex transactions through it.

tagged: tutorial authorizenet aim api interface library

Link:


Trending Topics: