Tag Archives: codeIgniter
Building a Shopping Cart using CodeIgniter’s Shopping Cart Class

Building a Shopping Cart using CodeIgniter’s Shopping Cart Class

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,

Read more
Reading CSV File in CodeIgniter

Reading CSV File in CodeIgniter

A Comma separated values (CSV) file is a computer data file used for implementing the tried and true organizational tool, the Comma Separated List. The CSV file is used for the digital storage of data structured in a table of lists form, where each associated item (member) in a group is in association with others [...]

Read more
Parsing XML file using CodeIgniter’s SimpleXML library

Parsing XML file using CodeIgniter’s SimpleXML library

This Simplexml class provides an alternative implementation of the SimpleXML API that works under PHP 4, so if you have an application that is running under PHP4 environment this is really helpful for you.
The original class was created by Taha Paksu of http://www.phpclasses.org and it was modified by Chris Brainard so that it would work [...]

Read more
Building a basic PHP E-Commerce Application using CodeIgniter Framework – Part 3

Building a basic PHP E-Commerce Application using CodeIgniter Framework – Part 3

Part III – Creating the site mockup and Preparing our View.

In this part of the series we will create a design mockup for our e-commerce site. And create a reusable component of our view.
First we need to know how our site should looks like. And how we showcase our products. Basically our site should [...]

Read more
Building a basic PHP E-Commerce Application using CodeIgniter Framework – Part 2

Building a basic PHP E-Commerce Application using CodeIgniter Framework – Part 2

Now that we are done the CI installation. We are ready to start building our e-commerce application. What we need to do first is design our database structure. You can of course freely design your own structure, but for this tutorial I made it simple.

Read more
Building a basic PHP E-Commerce Application using CodeIgniter Framework – Part 1

Building a basic PHP E-Commerce Application using CodeIgniter Framework – Part 1

E-commerce application nowadays is a must for those who are selling their product online. And yes there’s a lot of good open source e-commerce application available and ready to use.

Read more