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
do $data = $this->input->post('businessType');
$data = $this->input->post('businessType');
You should see that $data is an array, and shows different values. Try doing var_dump($data); to see what's inside the array.
var_dump($data);
var_dump()