I have dynamically created radio buttons.how to get the value of these buttons using post.
$i=1;
<input type="radio" name="qtn-$i" value="yes">
$i++;
how to get this value using post method.
$i=1;
<input type="radio" name="qtn-$i" value="yes">
$i++;
how to get this value using post method.
Comment