I have array id like this,
Array ( [0] => 1013 [1] => 1012 [2] => 1011 [3] => 1010 )
I want to update my table user by those id, here my controller code
public function index()
{
$id = $this->input->post('check_list');
print_r($id); // just try to check output value
$this->template->load('v_t','v_e', $data);
}
thanks.