Book Image

CodeIgniter 1.7

Book Image

CodeIgniter 1.7

Overview of this book

CodeIgniter (CI) is a powerful open-source PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. CodeIgniter is an MVC framework, similar in some ways to the Rails framework for Ruby, and is designed to enable, not overwhelm. This book explains how to work with CodeIgniter in a clear logical way. It is not a detailed guide to the syntax of CodeIgniter, but makes an ideal complement to the existing online CodeIgniter user guide, helping you grasp the bigger picture and bringing together many ideas to get your application development started as smoothly as possible. This book will start you from the basics, installing CodeIgniter, understanding its structure and the MVC pattern. You will also learn how to use some of the most important CodeIgniter libraries and helpers, upload it to a shared server, and take care of the most common problems. If you are new to CodeIgniter, this book will guide you from bottom to top. If you are an experienced developer or already know about CodeIgniter, here you will find ideas and code examples to compare to your own.
Table of Contents (21 chapters)
CodeIgniter 1.7
Credits
About the Authors
About the Reviewer
Preface

Chapter 15. Resources and Extensions

Well, we've looked at CI pretty thoroughly, and we hope all we have been through helps you in your day-to-day programming. We've also developed some of our code in the process. When you must have gone through some of the code in this book, you must have thought "I could write that better…". Everyone has their own style, and CI gives you a lot of freedom.

The CI community is full of people who write good code and luckily many of them make it available free of cost to the rest of us. So there's a lot of code out there that may save you a lot of work. For example, if you want to create dynamic graphs of data drawn from your database—you can sit down and write the code yourself or search for a ready-made solution.

Using third-party code in our applications and websites is something quite usual, because we can't develop everything, it wouldn't be productive. Luckily for us CI's Wiki is very extensive and has a lot of libraries that we can use.

In this chapter...