RE: [PHP] question about :: usage

2003-11-07 Thread Chris W. Parker
Eugene Lee on Friday, November 07, 2003 12:00 PM said: > Won't work. $this refers to the instance of an object. Yeah I've decided to just instantiate an object. It's not really a big deal I guess, I just thought it might be a little cleaner to not instantiate. A fr

Re: [PHP] question about :: usage

2003-11-07 Thread Eugene Lee
On Fri, Nov 07, 2003 at 11:28:18AM -0800, Chris W. Parker wrote: : : Anyway... Here is my problem. I have a class called Validate that has a : method called ValidateInput. There is another method in this class : called phonenumber. ValidateInput calls phonenumber at some point like : this $this->p

[PHP] question about :: usage

2003-11-07 Thread Chris W. Parker
Hi yizzle. Anyway... Here is my problem. I have a class called Validate that has a method called ValidateInput. There is another method in this class called phonenumber. ValidateInput calls phonenumber at some point like this $this->phonenumber($input);. In my page I'm trying to use this class wi