Welcome Guest, Not a member yet? Register   Sign In
repopulate a form with data from table
#4

[eluser]Ellli[/eluser]
well, you overwrite $data['single_user'] with $data = array(...);

add an indec to your $data after update like this $data['new_data']:
Code:
function edit()
{
    $this->load->model('user_model');
        
    //here the code to populate the fields with actual data - added an index
    $data['single_user'] =  $this->user_model->get_data_user();    
    
    
    //this is for update the actual data with new data
    $data['new_data'] = array(
      'user_firstname' => $this->input->post('firstname'),
      'user_lastname' => $this->input->post('lastname'),
      'user_username' => $this->input->post('username'),
      'user_password' => $this->input->post('password'),
      'user_email' => $this->input->post('email')        
    );

    $this->user_model->edit_user($data);
    $this->load->view('edit_user_form', $data);
}


and in view if you want to get value of $data['single_user']->... write $single_user and if you want to get value of $data['new_data'] write $new_data->...


Messages In This Thread
repopulate a form with data from table - by El Forum - 05-22-2011, 04:58 AM
repopulate a form with data from table - by El Forum - 05-22-2011, 06:06 AM
repopulate a form with data from table - by El Forum - 05-22-2011, 06:19 AM
repopulate a form with data from table - by El Forum - 05-22-2011, 07:39 AM
repopulate a form with data from table - by El Forum - 05-22-2011, 09:16 AM
repopulate a form with data from table - by El Forum - 05-22-2011, 09:53 AM
repopulate a form with data from table - by El Forum - 05-22-2011, 10:28 AM
repopulate a form with data from table - by El Forum - 05-23-2011, 12:18 AM
repopulate a form with data from table - by El Forum - 05-23-2011, 01:45 AM
repopulate a form with data from table - by El Forum - 05-23-2011, 05:26 AM
repopulate a form with data from table - by El Forum - 05-23-2011, 05:37 AM
repopulate a form with data from table - by El Forum - 05-23-2011, 05:43 AM
repopulate a form with data from table - by El Forum - 05-23-2011, 05:47 AM
repopulate a form with data from table - by El Forum - 05-23-2011, 05:51 AM
repopulate a form with data from table - by El Forum - 05-24-2011, 12:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB