Answers for "how to get value of radio button in php from database"

PHP
0

how to update radio button value in database using php

<input type="radio" name="type" value="S" <?php if ($type == 'S') echo 'checked="checked"'; ?>" /> Student<br />
<input type="radio" name="type" value="T" <?php if ($type == 'T') echo 'checked="checked"'; ?>" /> Teacher<br />
Posted by: Guest on June-07-2021
0

How to Get Radio Button Value in PHP Without Submit

$('input[type=radio]').click(function(e) {
		
        var gender = $(this).val(); 
        $('.result').html(gender);
		
    });
Posted by: Guest on July-05-2020

Code answers related to "how to get value of radio button in php from database"

Browse Popular Code Answers by Language