Okay I just thought of something John. If I'm doing a $hasMany in the Level model will I also need to do a $belongsTo in the Role model?
Would I do the same thing and just use class Roles extends AppModel { var $name = 'Roles'; var $belongsTo = array('Level' => array('className' => 'Level', 'condition' => '', 'order' => '', 'foreignKey' => 'role1_id' ), 'Level2' => array('className' => 'Level', 'condition' => '', 'order' => '', 'foreignKey' => 'role2_id' ) ); } Am I close here? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php -~----------~----~----~----~------~----~------~--~---