Код: Выделить всё
public function save($data, $id)
[
$this->db->insert OR REPLACE($this->table, $data);
return $this->db->insert_id();
}
Подробнее здесь: https://stackoverflow.com/questions/342 ... cord-alrea
Код: Выделить всё
public function save($data, $id)
[
$this->db->insert OR REPLACE($this->table, $data);
return $this->db->insert_id();
}