no - not like that - you are mixing the input elements with php code
(sorry - I misread it as checkboxes, you asked for radio buttons)
the radio buttons must each be closed with '>'
just do this at start of your script:
if ($POST['foo']==1)
$vone=1 ;
else if ($POST['foo']==2)
$vtwo=2;
else($_POST['foo']==3)
$vthree=3;
and when a value matches in the three radio button inputs echo "checked='checked'";
(but you should be able to do it without the additional variables)