这是我的表格:
<form method="post">
<input type="checkbox" name="ciccio" value="214124,qqqqq" />1
<input type="checkbox" name="ciccio" value="675656,fggggggggg" />2
<input type="checkbox" name="ciccio" value="125676,gfsdsasssss" />3
<input type="checkbox" name="ciccio" value="898797,looooooo" />4
<input type="submit" value="vai" />
</form>
我需要在数据库中插入“form.ciccio”的值。当我转储该变量时,结果是:
Ciccio: 214124,qqqqq,675656,fggggggggg,125676,gfsdsasssss,898797,looooooo
我试过使用:
<cfset testing = form["ciccio[]"]>
但它不起作用。我该如何解决这个问题?