phpfunk.com


Archive for the ‘object oriented php’ Category

how to develop quality software

Thursday, February 11th, 2010

First create a prototype. This is for all you folks who like to dive in and start writing code right away ;^) This way you can try out your approach to solving the problem, or maybe it will help you dissect a large complicated project into smaller more units. Sometimes the prototype is just a [...]

database abstraction for php 4

Saturday, February 6th, 2010

Still stuck in PHP 4 but need a DB abstraction layer like PDO but with only the basic functionality?

database abstraction layer

Saturday, February 6th, 2010

Way before PDO came out one of the first things I needed was a good database abstraction layer. In fact, php 5 wasn’t even available as a stable branch of php at the time. The resulting PHP class was to be modeled after the perl DBI package, except stripped down to minimum amount of features. [...]