Re: CakePHP and a normalized database

2011-12-31 Thread lcano
Clint,Thanks a lot! Your code worked and now I am able to retrieve information from different tables within the User model. Now, my next question would be. How would inserting data work? Does cakephp take care of that automatically as well? Thanks, Luis On Dec 30, 7:56 pm, Clint wrote: > Hi, the f

CakePHP and a normalized database

2011-12-30 Thread lcano
Quick question, I have the following normalized MySQL database with tables: Users - id - username - password - person_id People - id - firstname - lastname - address_id - email_id Addresses - id - address - city_id - state_id - country_id - zipcode_id Countries -