Categories
Yii 1.x create field in model from another table?
Suppose I have a many-to-many relationship Can I create a field in the main model under elem.name ? yii 1.1.16
Answer the question
In order to leave comments, you need to log in
$elem = new Elem(); $elem->id = 'kuku'; $elem->save(); $link = new MainHasElem(); $link->id_main = $this->id; $link->id_elem = $elem->id; $link->save();
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question