Hi again my friends! Now, I need to work with two or more tables, each table has some information I need. For example, table USERS has the users, but I need too table USERINFO, which have the user information...
I created a class that extends Zend_Db_Table_Abstract:
class Users extends Zend_Db_Table_Abstract
{
protected $_name = 'users';
}
But, I would like to manage more tables, and get flexibility to combine
then... these kind of things...
Best regards,
José
