I am trying to bind 3 models in cakephp.The relation is as follows
Member hasMany Member_Organaization Member_Organisations belongs to Organaizatio
Use recursive the cakephp functionality for this type of purpose.
recursive
In your controller: $this->Member->recursive = 2; use this before your find query.
$this->Member->recursive = 2;
Refrence : http://book.cakephp.org/view/1063/recursive
http://book.cakephp.org/view/1063/recursive