Skip to content

Instantly share code, notes, and snippets.

@walkerdigital
Created November 29, 2017 16:47
Show Gist options
  • Save walkerdigital/dd81a04f0f67fcb193cf6516c1f45115 to your computer and use it in GitHub Desktop.
Save walkerdigital/dd81a04f0f67fcb193cf6516c1f45115 to your computer and use it in GitHub Desktop.
Code Igniter INSERT IGNORE INTO
$data = array(
'title' => 'My title',
'name' => 'My Name',
'date' => 'My date'
);
$sql = $this->db->set($data)->get_compiled_insert('mytable');
echo $sql;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment