How to execute multiple INSERT queries with CodeIgniter's query builder
When I try to execute two insert queries, the first works and the second doesn't.
This is my code:
foreach ($data as $key => $value) {
$this->db->insert('db_purchased', $value);
}
// $data contains multiple arrays $data =array(array(...))
How can I fix that?