袁来如此的工作笔记
袁来如此的工作笔记
竹杖芒鞋轻胜马,谁怕? 一蓑烟雨任平生。

PHP表单多选数据接收与处理

浏览量:755

<form id="form1" name="form1" method="post" action="">
  <input type="checkbox" name="checkbox[]" id="checkbox1" value="1"/>
  1111
  <input type="checkbox" name="checkbox[]" id="checkbox2" value="2"/>
  2222
  <input type="checkbox" name="checkbox[]" id="checkbox3" value="3"/>
  3333
  <input type="checkbox" name="checkbox[]" id="checkbox4" value="4"/>
  4444
  <input type="submit" name="button" id="button" value="提交" />
</form>

$_POST['checkbox']接收到的结果是一个数组(选中的值)

如字符串方式保存,插分为字符串implode(',',$_POST['checkbox'])

打赏