I am trying to make a SQL query and/or php code that only creates an array based on many criteria. I have an array like this:
Array ( [1] => 1 [8] => 0 [2] => 1 )
The [1] refers to 'question_id' with the 1 being a 'value'
The [8] refers to 'question_id' with the 0 being a 'value'
The [2] refers to 'question_id' with the 1 being a 'value'
My database is set up like below and when I call it I am trying to get an array of ONLY the movie_ids that meet all of the above ^. So say the array has [8] => 0. The question_id should be 8 and the value corresponding to that record should be 0. So say the array has 1 => 0. The question_id should be 1 and the value corresponding to that record should be 0. If it meets the pair, and the other pairs before it, it should add that record to the array.
I've tried this, I'm using Codeigniter:
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();
array_push($main_array,$res);
}
$main_array is an empty array before it. $array is an array like the one above. But the problem wrong with this is, it checks one pair, so say 1 => 0 and if it matches, then it is added. Rather than checking that it ALSO matches [8] => 0 and [2] => 1.

CodeIgniter, whatever it is,add name of the framework in tags. – Sheikh Heera Feb 24 at 0:32