I am new to PHP codeigniter,
how to get checkbox values using php Codeigniter in Controller.
Here is the Checkboxes, i want to get checkbox values base on na
As dvcolgan (+1) suggested, radio buttons are what you should use, here is an example wrapped in a fieldset.
Your HTML
Choose Business Type:
Then in your php
$businessType = $this->input->post("businessType");