how to get checkbox values using php codeigniter in Controller

后端 未结 4 401
时光取名叫无心
时光取名叫无心 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:10

    Put braces after each name. Give each a unique value:

    
    
    
    

    Get them like this:

    substr(implode(', ', $this->input->post('businessType')), 0)
    

提交回复
热议问题