how to get value of radio button data from database in php code example
Example: How to Get Radio Button Value in PHP Without Submit
$('input[type=radio]').click(function(e) {
var gender = $(this).val();
$('.result').html(gender);
});