I have a table list of data and have a input box beside them example :
Name M/F
name1 ____
name2 ____
i only set 1 form to send data from that form inside a table and send it to controller in controller when i using this to receive the form data
$data_done['sex'] = $this->input->post('sex');
this only received the first data only.. how can i get all the data in controller? FYI that table data is a loop from DB.. thanks