Answers for "radio button in php w3schools"

55

radio buttons html

<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
Posted by: Guest on February-09-2020
0

radio button select in php

<?php echo ($signi== 'Yes') ?  "checked" : "" ;  ?>
Posted by: Guest on March-09-2021

Code answers related to "radio button in php w3schools"

Browse Popular Code Answers by Language