Archive for May, 2009


Facebook Connect Library for CodeIgniter

Just a brief follow-up to the post series I did a while back on Implementing Facebook Connect with CI. Today, Elliot Haughin continued his tradition of releasing helpful CI libraries and published a new library for implementing Facebook Connect using CodeIgniter. Haven’t had a chance to review it personally yet but I would imagine it’s [...]

CodeIgniter, Programming

Support the National Center for Missing and Exploited Children

“The U.S. Department of Justice reports that in a one-year period of time 797,000 children were reported missing. That is an average of 2,100 children reported missing each day. 1,682,900 children ran away or were thrown away. 203,900 children were abducted by family members. 198,300 children were involuntarily missing, lost or injured. 58,200 children were [...]

Misc.

Building Applications using CodeIgniter (Part 4) – Code Templates

Last July I wrote a post entitled “What does your code say about you?” In that post I discuss the importance of writing clean well formatted code. It’s vitally important, even if you are the only programmer working on a project, that you document and format your code because you may be the only programmer [...]

CodeIgniter

Building Applications using CodeIgniter (Part 3) – Helpers

So far in this series we’ve discussed framework/application structure and configuration information. The next thing I always add to new applications is some common helper files I’ve developed and that come in handy in most projects. CodeIgniter (CI) helpers are very flexible tools to assist with common tasks throughout the app. If it doesn’t belong [...]

CodeIgniter

Your thoughts: Do web apps need offline components?

I’ve seen a lot of discussion over the last couple of months about things like Google Gears and Adobe Air, technologies that make it easier to develop web applications that can be run/accessed from the desktop. The more I consider this concept the more I scratch my head in confusion. I have had a request [...]

Tech Commentary

Building Applications using CodeIgniter (Part 2) – Configuration

The framework that you use to build your application will end up being the foundation of your program. Everything that your program does will revolve around how that framework works. Things like naming conventions, file paths and settings are dictated by the framework. But if you have chosen a good framework, like CodeIgniter (CI), you [...]

CodeIgniter

How-to Ensure a Secure Connection Using PHP

Image via Wikipedia When submitting sensitive information over the web it’s important to ensure that the requested page is being accessed via an HTTPS encrypted connection. I’ve come across some forms that don’t check whether a secure connection has been made or not. In other words, you can delete the S from HTTP and instead [...]

CodeIgniter, How-to, Programming