Код: Выделить всё
while ($row = $update_post->fetch_array()){
//Explodes checkbox values
$res = $row['column_name'];
$field = explode(",", $res);
$arr = array('r1','r2,'r3','r4','r5','r6');
if (in_array($arr, $field)) {
echo "alert('something to do')";
} else {
echo "alert('something to do')";
}
}
Подробнее здесь: https://stackoverflow.com/questions/405 ... flat-array