How to execute multiple INSERT queries with CodeIgniter's query builder
09:14 22 Jul 2013

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?

php loops codeigniter sql-insert query-builder