Re: [PHP] Q on "inhert" class code

2003-09-04 Thread jsWalter
Evans, thx for your effort. I see what your says, as I noticed the trouble at 3 this morning! This is how I fixed it... $session = &Auth::_importGlobalVariable("session"); $session[$this->_sessionName]['data']['_loginAttempts'] = $this->_loginAttempts; Pretty much the way you indicated.

Re: [PHP] Q on "inhert" class code

2003-09-04 Thread Evan Nemerson
It looks like you're trying to access a variable of a class, not an instance of that class. try something more like $authObj = new Auth; $session = &Auth::_importGlobalVariable("session"); $session[$authObj->_sessionName]['registered'] = true; I'm pretty sure php4 doesn't allow access to variabl

[PHP] Q on "inhert" class code

2003-09-03 Thread jsWalter
I have a parent Class that does this in one of it's methods... $session = &Auth::_importGlobalVariable("session"); $session[$this->_sessionName]['registered'] = true; I would like to "hook" into this in on eof my methods in a child class I thought I could do this... [538] $se