how can i get multiple checked box values in codeigniter with this code
<input type="checkbox" name="assign[]" value="Keyur"> Keyur<br/>
<input type="checkbox" name="assign[]" value="Ritesh"> Ritesh<br/>
<input type="checkbox" name="assign[]" value="Saurabh"> Saurabh<br/>
<input type="checkbox" name="assign[]" value="Maulik"> Maulik<br/>
at the controller
$data1 = $this->input->post('assign[]');
i do that but can't get values,where i make mistake????