RE: [PHP] Re: OOP methodology

2004-02-02 Thread chris . neale
Chris -Original Message- From: Justin Patrin [mailto:[EMAIL PROTECTED] Sent: 30 January 2004 17:19 To: [EMAIL PROTECTED] Subject: [PHP] Re: OOP methodology Wow, that's a lot of stuff in one class. Personally, I've started using the MVC (Model, View, Controller) architecture. Basically what

[PHP] Re: OOP methodology

2004-01-30 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2004-01-30 09:41:53 +: I'm trying to get to grips with my understanding of OOP. snip / Looks like you might enjoy reading Design Patterns by Gamma et. al. (ISBN: 0201633612). It's not easy reading, but will quite likely open your eyes. I've had many

[PHP] Re: OOP methodology

2004-01-30 Thread Justin Patrin
Wow, that's a lot of stuff in one class. Personally, I've started using the MVC (Model, View, Controller) architecture. Basically what it does is seperates Data logic from Display logic and Control logic. Here's how I've been using it. Model: Holds and deals with all data for the program, such