Tag Archives: PHP
Embracing PHP 5.3 MVC with MiMViC

Embracing PHP 5.3 MVC with MiMViC

MiMViC is a modular and lightweight PHP 5.3+ Web application framework designed to help build dynamic and robust Web sites. It’s single theory is based on minimal and focusing on only core glue for your complex PHP web sites. Today I will show you how to create a shout-box using the framework.

Read more
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
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 [...]

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

Secure File Upload in PHP Web Applications

Providing file upload function without opening security holes proved to be quite a challenge in PHP web applications. The applications we have tested suffered from a variety of security problems, ranging from arbitrary file disclosure to remote arbitrary code execution. In this article I am going to point out various security holes occurring in file upload implementations and suggest a way to implement a secure file upload.

Read more
10 Promising Opensource PHP E-Commerce Application

10 Promising Opensource PHP E-Commerce Application

A roundup of the most promising opensource PHP e-Commerce Application around the web.

Read more
25 OpenSource PHP Framework

25 OpenSource PHP Framework

PHP Framework nowadays is getting more popular to web application developers who uses PHP as their main language. A web application framework is a software framework that is designed to support the development of dynamic websites, Web applications and Web services. The framework aims to alleviate the overhead associated with common activities used in Web [...]

Read more

Zend Framework Blog Application Tutorial: Part 8: Creating and Editing Blog Entries with a dash of HTMLPurifier

There’s nothing quite like having a functioning application emerge out of the controlled chaos we know as The Development Process. In Part 8 of the ongoing saga describing how to build a real world blog application using the Zend Framework we finally reach the point at which we concentrate on blog entries. At the end [...]

Read more