I have an array with keys and values like this:
Array ( [1] => 0 [3] => 0 )
I want to call a database where question_id = 1 and it's value is 0 and combine that with a query of question_id = 3 and it's value of 0. I am using Codeigniter.
I've tried:
foreach($array as $key=>$value){
$this->db->where('question_id', $key);
$this->db->where('value', $value);
$this->db->from('movies_values');
$query = $this->db->get();
$res = $query->result();
print_r($res);
array_push($main_array,$res);
}
