[fw-general] Zend Registry

2009-04-03 Thread Alexander Johannesen
Hi, It says in the manual that Zend_Registry when used as an introspective object has buggy behaviour is some versions of PHP, but it doesn't state which versions. If it's like 5.1.* then it doesn't matter, but some clarification would be good. $glob = new Zend_Registry( array(),

Re: [fw-general] Zend Registry

2009-04-03 Thread Matthew Weier O'Phinney
-- Alexander Johannesen alexander.johanne...@gmail.com wrote (on Friday, 03 April 2009, 07:43 PM +1100): It says in the manual that Zend_Registry when used as an introspective object has buggy behaviour is some versions of PHP, but it doesn't state which versions. If it's like 5.1.* then it

Re: [fw-general] zend registry problem

2008-08-11 Thread Ahmed Abdel-Aliem
Thanks a lot :) i am using Zend_Session to do the job, i dunno how i forgot this :D thanks a lot for those who helped i really appreciate it. On Fri, Aug 8, 2008 at 1:13 PM, Carlos Medina [EMAIL PROTECTED]wrote: Ahmed Abdel-Aliem schrieb: Dear All, i have a problem setting a value in

[fw-general] zend registry problem

2008-08-08 Thread Ahmed Abdel-Aliem
Dear All, i have a problem setting a value in Zend_Registry and retrieving it back in another page *here is the scenario, when a user log in i set his last login from the database in a variable :* Zend_Registry::getInstance();

Re: [fw-general] zend registry problem

2008-08-08 Thread David Goodwin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 can anyone give me a hand in this please ? You need to persist your Zend_Registry instance in a session, or use Zend_Session instead of Zend_Registry for storing the last login data. David. - -- David Goodwin Pale

Re: [fw-general] zend registry problem

2008-08-08 Thread Carlton Gibson
On 8 Aug 2008, at 10:34, Ahmed Abdel-Aliem wrote: here is the scenario, when a user log in i set his last login from the database in a variable : Zend_Registry::getInstance(); Zend_Registry::set('user_last_login', $user_row [user_last_login]); and in the

Re: [fw-general] zend registry problem

2008-08-08 Thread Carlos Medina
Ahmed Abdel-Aliem schrieb: Dear All, i have a problem setting a value in Zend_Registry and retrieving it back in another page *here is the scenario, when a user log in i set his last login from the database in a variable :* Zend_Registry::getInstance();