db insert, update, delete
insert yapmak için
$data = array(
"first_name" => "Doğan",
"last_name" => "Çoruh
);
$this->db->insert("customers", $data);
update için
$data = array(
"first_name", "Kemal",
"last_name", "Sunal"
);
$this->db->where("id", 4);
$this->db->update("customers", $data);
delete için
$this->where("id", 4);
$this->delete("customers");
son eklenen kayıdın id'sini almak için
$id = $this->db->insert_id();
$data = array(
"first_name" => "Doğan",
"last_name" => "Çoruh
);
$this->db->insert("customers", $data);
update için
$data = array(
"first_name", "Kemal",
"last_name", "Sunal"
);
$this->db->where("id", 4);
$this->db->update("customers", $data);
delete için
$this->where("id", 4);
$this->delete("customers");
son eklenen kayıdın id'sini almak için
$id = $this->db->insert_id();
Yorumlar
Yorum Gönder