Advertisement
Guest User

update

a guest
Feb 12th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. public function update($id, $data_products) {
  2. //query update from...where id=...
  3. $this->db->where('id',$id);
  4. $this->db->update('products',$data_products);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement