11-21-2020, 12:23 PM
Try using set on the array.
PHP Code:
public function update_product($product)
{
$this->db->where('user_name', $lcuser);
$data = array('temp_1' => $product);
$this->db->set($data);
$this->db->update('tbl_members', $data);
}
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )