postgresql - How to access attribute in a relational database PHP (Yii 1.1)
one text
Solution:
Yii makes this rather easy. By using $model->table_name->column
, you can access items in the related tables, as long as the models are setup for this. For instance, to access from dashboard to tag and idtag, $dashboard->dashboard_has_tag->tag->tag
should get you the tag's text, and similarly, $dashboard->dashboard_has_tag->tag->idtag
should get you the tag's ID.
If you use Gii to create your models, they should be setup for this.
Source