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

PHPBuilder.com:
Beyond the PHP Shopping Cart: Five PHP-based Ecommerce Solutions
Jun 29, 2011 @ 15:50:31

On PHPBuilder.com today, Jason Gilmore has posted a look at five PHP-based ecommerce solutions with a wide range of feature sets and larger support and usage across the web.

Literally hundreds of open source and commercial PHP-based ecommerce solutions exist, yet only a select few will adequately meet the aforementioned requirements. If you're currently exploring a PHP-based ecommerce project, consider starting your investigations by learning more about these five prominent solutions.

The five that made the list were:

For each he gives a brief overview of what it has to offer and includes links to the official demo for you to try it out before making your decision.

tagged: ecommerce shoppingcart software summary

Link:

NETTUTS.com:
CodeIgniter from Scratch: Shopping Cart
Mar 26, 2010 @ 13:08:15

On NETTUTS.com there's a new tutorial looking at the CodeIgniter framework and using the shopping cart class that it comes bundled with to create a simple cart system based on this library.

Today, we are going to take a look at the Shopping Cart library for CodeIgniter. This useful class allows us to add and remove items to a shopping cart, update them, and calculate prices. I will demonstrate how you can build a simple shopping cart system with the help of this library.

This is the latest in their "CodeIgniter from Scratch" series so, if you're not overly familiar with the framework, you might need to go back and start from the beginning and work your way up. The screencast steps you through the shopping cart creation and an image of the end result is also included. You can also download the source to make it easier to follow along.

tagged: codeigniter tutorial shoppingcart library

Link:

INSC Dsigns:
Building a Shopping Cart using CodeIgniter’s Shopping Cart Class
Jan 18, 2010 @ 14:55:35

On the INSC Designs site today there's a new tutorial walking you through the creation of a shopping cart with the help of the Shopping Cart class that's included in the CodeIgniter PHP framework.

Late last year CodeIgniter v1.7.2 was released with a lot of improvements and bug fixes. This version is now compatible with PHP5.3.0, they added is_php() to Common functions to facilitate PHP version comparisons, modified show_error() to allow sending of HTTP server response codes, and all internal uses now send proper status codes, Form helper improved and a new class which we are about to cover in this tutorial the Shopping Cart Class.

They walk you through some of the basics that the shopping cart class has to offer - adding items, removing them, updating the current item list. They show you how to create each piece of the MVC puzzle - the Product controller, a Cart controller and two basic views, one for the cart and the other for the products. They didn't create a model because they're not hooking it into a database/backend resource.

tagged: shoppingcart codeigniter framework class

Link:

PHPBuilder.com:
Developing a Ajax-driven Shopping Cart with PHP and Prototype
Apr 29, 2008 @ 13:48:31

On PHPBuilder.com today there's a new tutorial posted showing how to combine the Javascript power of Prototype along side PHP's adaptability to create a simple, ajax-driven shopping cart for your site.

In the latest installment of this ongoing PHP series, I'll show you how to build a shopping cart using PHP, session handling, and the Prototype JavaScript library. The cart allows users to add and delete products from the cart, as well as change cart quantities. And of course, the interaction is seemingly instantaneous, allowing for the user to continue shopping without waiting for the page to reload.

They start from the ground up - making the database tables, inserting some data - before writing up the simple PHP class with methods like deleteFromCart and getCart. This lays the foundation for the next article in the series where they add in a splash of ajax to make it a bit more user-friendly.

tagged: shoppingcart ajax prototype tutorial series

Link:

DeveloperTutorials.com:
PHP and MySql with PayPal
Nov 16, 2007 @ 14:48:00

DeveloperTutorials.com has a new tutorial posted today about making the connection between a PHP/MySQL application and PayPal through the GoLive interface (don't worry - the source code's there too).

This tutorial is meant to show how GoLive users can integrate their PHP/MySql dynamic data with PayPal to create a simple online store with some advanced pricing features. This tutorial assumes that you are already familiar with using dynamic content in GoLive and aren't too terrified of working with source code.

They start with the SQL to hold the item information (including price) and show briefly how to set it up with the Inspector helper in GoLive. They show how to grab the HTML off of the PaylPal site to link to the object and how to make this add it to the shopping cart on the PayPal website. To finish it off and make it look a little nicer, they also show how to add images to the layout for each of the items.

tagged: mysql paypal shoppingcart tutorial golive source mysql paypal shoppingcart tutorial golive source

Link:

DeveloperTutorials.com:
PHP and MySql with PayPal
Nov 16, 2007 @ 14:48:00

DeveloperTutorials.com has a new tutorial posted today about making the connection between a PHP/MySQL application and PayPal through the GoLive interface (don't worry - the source code's there too).

This tutorial is meant to show how GoLive users can integrate their PHP/MySql dynamic data with PayPal to create a simple online store with some advanced pricing features. This tutorial assumes that you are already familiar with using dynamic content in GoLive and aren't too terrified of working with source code.

They start with the SQL to hold the item information (including price) and show briefly how to set it up with the Inspector helper in GoLive. They show how to grab the HTML off of the PaylPal site to link to the object and how to make this add it to the shopping cart on the PayPal website. To finish it off and make it look a little nicer, they also show how to add images to the layout for each of the items.

tagged: mysql paypal shoppingcart tutorial golive source mysql paypal shoppingcart tutorial golive source

Link:

Mike Willbanks' Blog:
E-Commerce Frameworks?
Jul 30, 2007 @ 19:12:39

While frameworks seem to be popping out of the woodwork, Mike Willbanks has noticed something lacking - a good e-commerce framework that helps the developer do simple things like work with shopping carts or connect with payment APIs.

So here is my question, besides the really shitty shopping cart objects out there is there any true components for a framework that utilizes this functionality? I say shitty shopping cart objects because just about every single open source PHP shopping cart has some of the worst design aspects I have ever seen.

His complaint is that most of the shopping cart software out there is really just procedural (or bad) code shoved into classes and called good. He suggests a more patterned approach - maybe using a Factory on top of a base abstract model.

tagged: ecommerce framework shoppingcart zendframework paymentapi ecommerce framework shoppingcart zendframework paymentapi

Link:

Mike Willbanks' Blog:
E-Commerce Frameworks?
Jul 30, 2007 @ 19:12:39

While frameworks seem to be popping out of the woodwork, Mike Willbanks has noticed something lacking - a good e-commerce framework that helps the developer do simple things like work with shopping carts or connect with payment APIs.

So here is my question, besides the really shitty shopping cart objects out there is there any true components for a framework that utilizes this functionality? I say shitty shopping cart objects because just about every single open source PHP shopping cart has some of the worst design aspects I have ever seen.

His complaint is that most of the shopping cart software out there is really just procedural (or bad) code shoved into classes and called good. He suggests a more patterned approach - maybe using a Factory on top of a base abstract model.

tagged: ecommerce framework shoppingcart zendframework paymentapi ecommerce framework shoppingcart zendframework paymentapi

Link:

Developer.com:
Developing a Ajax-driven Shopping Cart with PHP and Prototype
Jan 26, 2007 @ 13:46:00

On Developer.com, Jason Gilmore has posted This new tutorial that steps you through the creation of an ajax-enabled shopping cart that combines PHP and Prototype.

In the latest installment of this ongoing PHP series, I'll show you how to build a shopping cart using PHP, session handling, and the Prototype JavaScript library (introduced in an earlier installment). The cart allows users to add and delete products from the cart, as well as change cart quantities. And of course, the interaction is seemingly instantaneous, allowing for the user to continue shopping without waiting for the page to reload.

He creates the database table first (bottom up approach), then moves to the PHP code to handle the request/responses for the shopping cart, and with a little bit of session magic to connect the cart to the user and the Prototype tossed in, the cart is complete.

tagged: prototype ajax shoppingcart products database prototype ajax shoppingcart products database

Link:

Developer.com:
Developing a Ajax-driven Shopping Cart with PHP and Prototype
Jan 26, 2007 @ 13:46:00

On Developer.com, Jason Gilmore has posted This new tutorial that steps you through the creation of an ajax-enabled shopping cart that combines PHP and Prototype.

In the latest installment of this ongoing PHP series, I'll show you how to build a shopping cart using PHP, session handling, and the Prototype JavaScript library (introduced in an earlier installment). The cart allows users to add and delete products from the cart, as well as change cart quantities. And of course, the interaction is seemingly instantaneous, allowing for the user to continue shopping without waiting for the page to reload.

He creates the database table first (bottom up approach), then moves to the PHP code to handle the request/responses for the shopping cart, and with a little bit of session magic to connect the cart to the user and the Prototype tossed in, the cart is complete.

tagged: prototype ajax shoppingcart products database prototype ajax shoppingcart products database

Link:


Trending Topics: