codeigniter update ข้อมูลลง mysql
การอัพเดทข้อมูลลงฐานข้อมูลเราสามารถสร้างฟังก์ชั่นได้รูปแบบง่ายๆดังนี้
function update() {
$ar=array(
"Name"=>$this->input->post("txtName"),
"Email"=>$this->input->post("txtEmail")
);
$this->db->where('CustomerID', $this->input->post("txtCustomerID"));
$this->db->update("customer",$ar);
}