I have got a question regarding printing an array of checkboxes in the $_POST When I do:
echo '<pre>';
print_r($_POST);
echo '</pre>';
I can see the Checkboxes which I send through the $_POST How am I able to read only the checkboxes? This is what I currently have:
print_r($_POST['checkboxes[]']);
But this doesn't seem to work
$_POST['checkboxes']