Pages

Codeigniter Pagination

Sunday, February 26, 2012
This tutorial is part 2 of the tutorial series Building Website with CI. In this part 2 will explain you about Codeigniter Pagination Class. What is Pagination?If you are not familiar with the term "pagination", it refers to links that allows you to navigate from page to page, like this: We crated a site like facebook in the part 1 (How...
Read more ...

How to start with Codeigniter?

Friday, February 24, 2012
If you have an experience with PHP two or three project, you should speed up your coding time with CI. CI will give you more easy life with PHP. CI uses the Model View Controller architectural pattern which gives you great flexibility when it comes to reusing, altering and upgrading code. When I write this tutorial CI version is 2.0.2. It...
Read more ...

Creating menu from database data

Saturday, February 11, 2012
This post will walk you through a detailed tutorial on how to make a vertical menu system from our categories that stored in database. In this script, when the user add the new categories dynamically, the system will render the added categories as the menu items automatically. Below is our final result screenshot. Firstly, we need to create...
Read more ...

PHP tag cloud

Tuesday, February 7, 2012
In this tag cloud, I use only PHP and css. I don't want to explain what is tag cloud because I think you will be familiar with it and you will know how it is useful. Let's talk about how to make a tag cloud. We need some information from our database. So you need to create a database by using below sql script. CREATE TABLE IF NOT EXISTS...
Read more ...

PHP installation script

Thursday, February 2, 2012
In this post, we will discuss about installation script for our web site or web application. I divided into four functions for four steps. Before we do the first step, we need some code to call our functions according to the url. Open new document in your favourite editor and type below code and save as install.php <!DOCTYPE html> <html> <head> <title>Installation...
Read more ...