Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<input type="checkbox" name="cbox[value1]" /> Value 1
foreach ($_POST['cbox'] as $val=>$i){
$values[] = $val;
}
$query = "Select * from table where id IN ("'. implode("','",$values) . "')";