Welcome Guest, Not a member yet? Register   Sign In
Can't update primary key
#3

i follow your suggest and this my model:

PHP Code:
// update data
 
   function update($id$data)
 
   {    
        
$this->db->where('nis'$id);
        
$this->db->update($this->table$data);
 
   

or i try this too:
PHP Code:
// update data
 
   function update($id$data)
 
   {    
        
$this->db->where($this->id$id);
        
$this->db->update($this->table$data);
 
   

it's still not working.
Reply


Messages In This Thread
Can't update primary key - by uglyaditya - 11-07-2016, 08:39 PM
RE: Can't update primary key - by cartalot - 11-08-2016, 04:16 PM
RE: Can't update primary key - by uglyaditya - 11-08-2016, 05:28 PM
RE: Can't update primary key - by KimZ - 11-09-2016, 09:20 AM
RE: Can't update primary key - by uglyaditya - 11-25-2016, 01:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB