$id = $this->input->post("AgentId"); $name = $this->input->post("name"); $father = $this->input->post("father"); $picture = $this->input->post("picture"); $data = array("AgentName" => $name, "Father" => $father, $picture" => $picture); $this->db->where("AgentId", $id); $this->db->update('agent', $data);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)