Codeigniter checking checkbox value

后端 未结 5 844
抹茶落季
抹茶落季 2021-01-13 00:46

I\'m using CodeIgniter and I have a form with a checkbox that allows the user to check and remove their uploaded photo.
In my controller I use if(isset($checked)

5条回答
  •  无人共我
    2021-01-13 01:18

    remove isset

    its because by default in your CI Controller you get input value using

    $checked = $this->input->post('remove');

    whether is has a value or not your variable now exist..

提交回复
热议问题