When I retrieve the data from database the output is following
I want to fetch records against these id's but when I try in my controller with for each it gives me only 1 record back Here is my code
//fetch all the posts relative to user in session
$post_id['id'] = $this->message_model->get_post($id);
echo '<pre>'; print_r($post_id['id']);die;
foreach ($post_id['id'] as $key) {
$post_id = $key['post_id'];
$results['post_list'] = $this->Model_Frontend_Posts->get($post_id);
}
when i print $results['post_list']
it gives me only one record