Creating a Doctrine query with a different number of ids
- by frapet
Is it possible to create a Doctrine query with a differnt number of ids coming from a submitted form? And if yes how?
What I am trying to do is this:
....
if ($input->isValid()) {
$q = Doctrine_Query::create()
->from('Imm_Model_Images i')
->whereIn('i.ImageID = ?', array($input->ids));
$result = $q->fetchArray();
PS: ids come form the submitted form in an array as ids[].
Added Edit:
chaged the above line:
->whereIn('i.ImageID = ?', array($input->ids));
with:
->whereIn('i.ImageID = array($input->ids)');
...and it seems to work.