What is the differences between bind model and contain cakephp? any one have idea please share with me.. I am new to cakephp

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

One of the most powerful features of CakePHP is the ability to link relational mapping provided by the model. In CakePHP, the links between models are handled through associations. If you set up these associations in your model, then when you retrieve your data Cake will automagically retrieve associated data too.

The containable behavior allows you to filter and limit model find operations (assuming you have set up your model associations)

http://book.cakephp.org/view/1323/Containable

bind and unbind are useful for changing model associations on the fly:

http://book.cakephp.org/view/1045/Creating-and-Destroying-Associations-on-the-Fly

link|improve this answer
thanx :) now i get clearly – Cakephp.Saint May 17 '11 at 9:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.