how to get checkbox values using php codeigniter in Controller

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

    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");
    

提交回复
热议问题