[Solved] how to update multiple ids with different value


You are doing nothing with $check, Make id like this

 $ids="";
 if(!empty($_POST['id'])) {
   foreach($_POST['id'] as $id) {
      $ids[] = $id;
   }
 }
 $check = implode(",", $ids);

0

solved how to update multiple ids with different value