Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

Change the name of your input to name[], sex[], name1_[], ... instead. You can see my answer in another question here for more details pass multiple textbox values to controller Code igniter

share|improve this answer
thanks man for quick respon.. cheers :D – Erie Huang Jan 24 at 7:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.