swoolf:
The point in using radio button groups is that they only allow a single member of the group to be selected. So you only receive $_POST['test'] as a string, NOT an array.
ComputerChip:
If you post your full code (posted between [ PHP ] and [ /PHP ] tags) I will have a look.
If you had pasted the code from my previous post into a file without any changes it would work fine on PHP=>4.1, if PHP<4.1 you would have to change $_POST to $HTTP_POST_VARS.
Even coding with globals on (bad habit, don't do it) you should use the request arrays instead of the globalized vars.