Does CodeIgniter Automatically Prevent SQL Injection?
So, Does CodeIgniter Automatically Prevent SQL Injection?. The answer is no.
SQL Injection, according to wikipedia, "is a code injection technique that exploits a security vulnerability occurring in the database layer of an application".
Continue reading Does CodeIgniter Automatically Prevent SQL Injection?
Expression Engine 2.0 will be out soon
After years(?) after the announcement of Expression Engine 2.0, the Expression Engine version that will be built using CodeIgniter will be out on December 1st, according to the illustrious Derek Allard.
Continue reading Expression Engine 2.0 will be out soon
Code Completion with Codeigniter using Netbeans
Most programmers are lazy. If you're like me, you're lazy too. That's why I was so happy about using code completion with CodeIgniter using the Netbeans IDE.
Continue reading Code Completion with Codeigniter using Netbeans
CodeIgniter: Route Everything, except these Controllers
There was a recent post on the codeigniter forums trying to get urls like these:
http://yoursite.com/your-slug
Continue reading CodeIgniter: Route Everything, except these Controllers
Automatically Get the Base URL for CodeIgniter
Everytime, we set up or move a Codeigniter site, we have to make sure that the base_url in the config file is correctly set.
Someone recently asked in the CodeIgniter forums about this and we came up with something like this
Continue reading Automatically Get the Base URL for CodeIgniter
CodeIgniter and The HTML Base Tag
You learn something 'new' everyday. This isn't exactly new but it's new to me.
Today, at the CodeIgniter forums, xwero posted an alternative to doing the following:
<?php echo base_url() . 'css/styles.css ?>
Continue reading CodeIgniter and The HTML Base Tag
Pagination with CodeIgniter
I've often see forum posts asking why the Pagination class isn't working. I decided to create a tutorial on the Pagination class for those who need to learn about the pagination class.
Continue reading Pagination with CodeIgniter
Hierarchical Data in a Relational Database
A Google Search would produce "30,800,000". There are quite a few people looking for a solution to hierarchical data queries.
I, myself have been looking through it for a while and ended up using the The Adjacency List Model due to the need of my data to be updated once in a while.
Continue reading Hierarchical Data in a Relational Database

