Is it possible to have one "transaction" with to separate models. I want to insert a post with their tags. Tags and Posts are in two separate models. How can i achive to handle it with a transaction? (Like below:)
$this->db->trans_start(); $this->post_model->insert('...'); $this->tags_model->insert('...'); $this->db->trans_complete();