$this->Post->find('list', array ('conditions' => array("Post.title" =>
"<> This is a post"') );
This will find the ones that are not equal.
$this->Post->find('list', array ('conditions' => array("Post.title" =>
"This is a post"') , 'order'=>array('Post.title'=>'ASC') );
This will find all posts that Post.title="this is a post" and will
order ascendant by Post.title--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
