I found this code
<?php
$data = array();
$multicheckboxValue = (int)3;
for ( $i = 0; $i < 31; $i++ )
{
$val = (int) pow(2, $i);
if ( $val & $multicheckboxValue )
{
$data[] = $val;
}
}
echo "<pre>";
print_r($data);
?>
which retrieves the values of the checkbox from the database in value, against how to find users who value ,example, the value 1 AND 4 AND the value 256 ?