duanpanyang1962 2013-06-25 10:48
浏览 29
已采纳

如何使用codeigniter将复选框值写入数据库为1/0而不是/ 0

trying to save the checkbox 'checked status in my database. I am using codeigniter for this. I add the cehckbox form value to the array as follows: 'treated' => $this->input->post('treated'.$i),

I then write to database passing my array which contains the above input.

this is written to the database as 'on' and works with char/varchar. if however I change this to bit or tinyint(1) it fails with mssql error Conversion failed when converting the varchar value 'on' to data type tinyint.

How can I pass the checked checkbox value as 1 instead of on?

Thanks in advance.

update

 $i=1;
    while($i<=$this->input->post('orderlines'))
  {
$treatedVal=$this->input->post('treated'.$i)?1:0;

      //set the data for line insert start
        $data = array(
      'treated' => $treatedVal,    
        );

        $this->sales_model->order_lines_insert($data);  
  $i++;
  }
  • 写回答

3条回答 默认 最新

  • dourang20110122 2013-06-25 13:53
    关注

    You should change it in the HTML itself.

    <html>
        <input type="checkbox" name="check" value="1" />  <!--give it a value attribute the default is "on"-->
    </html>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多
  • ¥50 求一个win系统下运行的可自动抓取arm64架构deb安装包和其依赖包的软件。
  • ¥60 fail to initialize keyboard hotkeys through kernel.0000000000
  • ¥30 ppOCRLabel导出识别结果失败
  • ¥15 Centos7 / PETGEM
  • ¥15 csmar数据进行spss描述性统计分析
  • ¥15 各位请问平行检验趋势图这样要怎么调整?说标准差差异太大了
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题