I am having following codings in my form..how do I get the value of all radio button values on submit which is inside looping? Or give me any other solution for this.
Yes, as Sean commented, try this:
Questions? Option 1 Option 2 Option 3 Finish
and then use the below in PHP side to get radio button value as :
foreach ($_POST['optradio'] as $optNum => $option) { // do stuff with $optNum and $option }