RE: [PHP] OOP in web development

2001-02-14 Thread Nold, Mark
rk Maggelet [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 2:16 AM To: Nold, Mark; [EMAIL PROTECTED] Subject: RE: [PHP] OOP in web development On Wed, 14 Feb 2001 19:21:20 +1030, Nold, Mark ([EMAIL PROTEC

RE: [PHP] OOP in web development

2001-02-14 Thread Mark Maggelet
On Wed, 14 Feb 2001 19:21:20 +1030, Nold, Mark ([EMAIL PROTECTED]) wrote: >- >--- >- >Disclaimer: The information contained in this email is intended only >for the >use of the person(s) to whom it is addressed

Re: [PHP] OOP in web development

2001-02-14 Thread Phil Driscoll
I don't want to start an OOP flame thread here, so I'll shut up after this posting - it's just that nobody is speaking up for not using OOP :) The point needs to be made that code reuse, readability and maintainability do not come from whether or not you choose to use OOP techniques. They come fr

RE: [PHP] OOP in web development

2001-02-14 Thread Nold, Mark
y nice. Readability, maintainability and reusability are much higher with OOP. Mark Nold [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> Senior Consultant   Change is inevitable, except from vending machines. -Original Message- From: Jeff Warrington [mailto:[EMAIL PROTECTED]] Sent:

Re: [PHP] OOP in web development

2001-02-13 Thread Jeff Warrington
In article <[EMAIL PROTECTED]>, "Joe Sheble (Wizaerd)" <[EMAIL PROTECTED]> wrote: depending on the nature of what you are doing, one of the things that i like about using classes is the ability to group functionality under a larger structure, the class. Instead of having a series of disconnected

Fwd: Re: [PHP] OOP in web development

2001-02-13 Thread Joe Sheble (Wizaerd)
At 03:11 PM 2/13/01 -0500, you wrote: >> I find the ability to write something once (say a mysql_connect(); >> statement) and be able to run it on any page just with $db->connect(); is >> pretty cool. >> >> While that may not seem cool, if you some day change a a PHP statement that >> exists

Re: [PHP] OOP in web development

2001-02-13 Thread Mark Maggelet
On Tue, 13 Feb 2001 15:11:46 -0500, Kath ([EMAIL PROTECTED]) wrote: >I find the ability to write something once (say a mysql_connect(); >statement) and be able to run it on any page just with $db- >>connect(); is >pretty cool. > >While that may not seem cool, if you some day change a a PHP >statem

Re: [PHP] OOP in web development

2001-02-13 Thread Kath
ery minute of it! - Original Message - From: "Joe Sheble (Wizaerd)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 13, 2001 11:41 AM Subject: [PHP] OOP in web development > I've been using PHP for over a year now and have been successfully r

[PHP] OOP in web development

2001-02-13 Thread Joe Sheble (Wizaerd)
I've been using PHP for over a year now and have been successfully running three different websites developed with PHP, but I've never done anything with classes or objects. Even when returning data from a mySQL database, I use mysql_fetch_array() instead of mysql_fetch_object(). What am I mi