What's the correct syntax to select multiple rows through an array using Zend ? So basically fetch all the data that has name $a OR $b
etc..depending on number of array elements. I can't figure it out.......
public function selectRow($array)
{
$data = $this->table->select()
->where('name = ?', $array);
return $this->table->fetchAll($data);
}