$posts = $this->input->post('post_id'); //returns an array!!
$comments = $this->input->post('comment_text'); //also returns an array
foreach ($posts as $key=>$post_id) {
if (empty($comments[$key]) continue; //don't save empty comments fields
$data = array(
'post_id' => $post_id,
'comment' => $comments[$key]
);
$this->db->insert('table',$data);
}