标签: php mysql implode
我有一个多选框到PHP页面,我试图获取所选值并放在where语句中。我可以将值恢复为1 2 3 4而不使用逗号。我已经尝试了内爆和爆炸功能而没有运气。
foreach ($_POST['station'] as $stations) echo $station = $stations."\n";
答案 0 :(得分:0)
试试这个
$stations_string = implode(" OR ", $_POST['station']);