Answers for "how to update radio button value in database using php"

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

Code answers related to "how to update radio button value in database using php"

Browse Popular Code Answers by Language