Mark’s Site

Coding and golf …it’s hard being me :-)

Archives for the ‘2.1. Useful Techniques’ Category

Introducing Classes

By admin • Apr 17th, 2008 • Category: 2.1. Useful Techniques

Ever since I started using classes, I’ve enjoyed my programming so much more. In this article, I want to explain why I use classes in my web applications, and more importantly, how I use classes. After reading this article, you should understand why programmers use classes and how you can get started writing classes.



Using Your Classes

By admin • Apr 16th, 2008 • Category: 2.1.3. Classes

You’ve got your classes in place that talk to your database, now what?



From Schema to Classes

By admin • Apr 16th, 2008 • Category: 2.1.3. Classes

You’ve got you database schema all done and are ready to proceed. What do you do now?



Start With Notes

By admin • Apr 16th, 2008 • Category: 2.1.1. Planning

Confused, worried, or excited about building your first CMS? Well this article will help you on your way, safely and, hopefully, intelligently :-)



Introducing Recursion

By admin • Apr 16th, 2008 • Category: 2.1. Useful Techniques

Sooner or later, you will be confronted with a situation where you need to create an unlimited data structure. Think tree structures, or parent/child relationships, or category/subcategory relationships. This article will describe how to store and, more importantly, how to display this data.