Tag: Development

Community

Introduction to Class Programming

(Dante Salvador) In application program development, one of the most important considerations is the program’s ability to accurately represent our perception of the real world. This requires the program to incorporate a realistic data model. Such a program is certainly easier to understand than one

Community

Use Option Explicit

(Susan Sales Harkins and Mike Gunderloy) The number one coding error happens to all of us: It’s the typo that occurs when you incorrectly enter the name of a variable. Fortunately, you can completely avoid this error by adding an Option Explicit statement to your module.

Community

PHP Datastorage Class

(Chris Root) Many websites use databases for storing data for use by web applications. There are situations in which this is not the best solution, however. For light, moderate, or temporary storage requirements, you might prefer to use flat files, session variables, and cookies. This article will d