vote up 0 vote down star

I want to retrieve multiples values from a field. the code I am using this this

$conditions = array('Tag.name'=>$compare);//$compare = array('value1', 'value2',..);
$values = $this->find('all', array('conditions' => $conditions));

But It keeps coming out like this

    SELECT `Tag`.`id`, `Tag`.`name`, `Tag`.`count` FROM `tags` AS `Tag` WHERE `Tag`.`name` IN ('tag2', ' tag1', ' one tag')

Problem is it only retrieves the first value given. instead of all the values . How do I get it to select all the values in the array.

flag

40% accept rate
Is that the entire query that it is generating? – Jason Nov 6 at 15:51
Are you sure there are 'tag2', ' tag1', ' one tag' tags in your tags table? Paste the var_dump($values); print out back here. – neilcrookes Nov 6 at 20:32

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.