I know how to get all the check checkboxes by using this code
if ($_SERVER["REQUEST_METHOD"] == "POST"){
if(!empty($_POST['arrsymbols'])){
$checksymb = $_POST['arrsymbols'];
foreach ($checksymb as $selected){
echo $selected;
}
}
}
but my problem is how to get all uncheck checkboxes in php. Thank you