What data are you trying to retrieve? If it's what radio button or what checkbox is selected, then you can just see if the relevant "name" is in the $_POST array using [man]isset/man.
Alternatively, you can name the checkboxes "check[]" and then inside the $POST array it's going to be an array of values that are checked. So say you have:
<input type="checkbox" name="check[]" value="1" />
<input type="checkbox" name="check[]" value="2" />
<input type="checkbox" name="check[]" value="3" />
and the user checks the first and last checkbox. Inside the $_POST array the "check" element would be the following:
$_POST => Array(
['check'] => Array(
[0] => '1',
[1] => '3'
)
)
For radiobuttons, you'd only have one option selected anyway, so teh value of $_POST['radio'] (or whatever you named your radiobuttons) would be teh value they selected.