RE: [fw-general] Zend_Auth and a Join??

2009-01-15 Thread Terre Porter
I did something like this to merge two tables into one, using the Zend_Auth. $this-auth = Zend_Auth::getInstance(); $authAdapter = new Zend_Auth_Adapter_DbTable($this-db); $authAdapter-setTableName('users'); $authAdapter-setIdentityColumn('username');

RE: [fw-general] Zend_Auth and a Join??

2009-01-15 Thread Ehask71
Thx Random and others. I implemented the way Random did. One of my pet peavs on lists are the lovely people that instead of being kind reply with You should checkout Nabble it has a search feature So I thank the nice guys/gals for the open dialog. Eric vRandom wrote: I did