how to get checkbox values using php codeigniter in Controller

后端 未结 4 389
时光取名叫无心
时光取名叫无心 2020-12-09 20:28

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

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-09 21:09

    
    
    
    

    do $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()

提交回复
热议问题