当前位置:Gxlcms > PHP教程 > 复选数据汇总有关问题

复选数据汇总有关问题

时间:2021-07-01 10:21:17 帮助过:4人阅读

复选数据汇总问题
复选框,如果我想对选择的数据进行group_concat()操作,请问怎么做呢?


------解决方案--------------------
$in=implode(',',$_POST['id']); //假设复选框name为id[]
$sql="select id, group_concat(name) from tt where id in($in) group by id";
...

人气教程排行