April 12, 2010, in PHP.
12 Comments »
In PHP, and really in just about every programming language in existence, there are certain things that are important to remember. Some of them are very general and can be applied to almost all programming languages, while others are best associated with one specific programming language.
In this post you will find nine PHP best practices that everyone really should follow.
Read More
April 7, 2010, in PHP.
6 Comments »
I am often asked about by people how they should test their PHP applications. Because PHP is a server-side programming language, you can't just open the file in your web browser, like with HTML or JavaScript. You need to upload it to a server where the script can be run. But what if you don't want to rent space on a server, or if you want to make testing of PHP scripts much faster?
Read More
April 4, 2010, in PHP.
35 Comments »
Last week we took a look at an introduction to the CodeIgniter PHP framework. In that example we saw the basics of how CodeIgniter works and the basics of the MVC pattern. But we didn't really do much with models. Today we will look at the power of models in CodeIgniter to make CRUD functions easy.
Read More
April 3, 2010, in WordPress.
1 Comment »
WordPress 3.0, Beta 1 has been released today. WordPress 3.0 will bring many new features to the blogging platform that I'm sure we are all waiting for. You can read the official announcement at the WordPress blog. There are many new features included in this release, but keep in mind that this is only a beta, and will probably have some problems.
Read More
March 29, 2010, in PHP.
12 Comments »
CodeIgniter is really one of my favourite web development frameworks for PHP. It's lightweight, fast, and very easy to quickly get something working in. It follows a model-view-controller (MVC) pattern, and comes with many helpful libraries to help you get started. If you want to try out your first framework, CodeIgniter is the one to start with.
Read More