Welcome Guest, Not a member yet? Register   Sign In
Update some content
#2

[eluser]samitrimal[/eluser]
Change in the model
Code:
function update($tables){
    
    
      $this->db->set('id', $this->uri->segment(3));
      $this->db->update('data', $tables);
  }

to
Code:
function update($tables){
    
    
      $this->db->where('id', $this->uri->segment(3));
      $this->db->update('data', $tables);
  }


Messages In This Thread
Update some content - by El Forum - 06-05-2011, 09:29 PM
Update some content - by El Forum - 06-05-2011, 11:29 PM
Update some content - by El Forum - 06-06-2011, 08:12 AM
Update some content - by El Forum - 06-06-2011, 08:17 AM
Update some content - by El Forum - 06-06-2011, 08:54 AM
Update some content - by El Forum - 06-06-2011, 09:53 AM
Update some content - by El Forum - 06-06-2011, 10:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB