Frameworks
Build Your Own PHP Framework – Book Announcement!
There’s almost a hundred different PHP frameworks out there. Some are big some, are small. All of them do about 80% of what you need the way you want it, but the 20% that’s not usually takes you the most time/effort/money. This book shows you how to build your own PHP Framework using a PHP [...]
Don't use MVC
MVC (Model View Controller) design patterns all the rage, in fact, the MVC pattern is pretty much standard with every web framework. The idea is to keep code separate, the assumption is that with this separation comes ease of maintenance, and allows for developers of different skill sets to work in different areas. Here’s a [...]
Model 1.5 – An Introduction
What is Model 1.5? Well first it will help to describe Model 1 and Model 2. Model 1 – This is a web application design pattern for web scripting languages like JSP, ASP, or PHP, that take all the elements of a web application, business logic, data abstraction and connetions, and presentation/layout then puts them [...]
Don’t Use Frameworks
How many times have you heard that Framework fill_in_the_blank will save time and prevent developers from doing things their own way. Or Frameworks save time by eliminating some of the redundant work on application development. These might be true, but how many times has a the same framework been proposed for creating a 5 page [...]