how to update radio button value in database using php

Solutions on MaxInterview for how to update radio button value in database using php by the best coders in the world

showing results for - "how to update radio button value in database using php"
Nick
09 Aug 2020
1<input type="radio" name="type" value="S" <?php if ($type == 'S') echo 'checked="checked"'; ?>" /> Student<br />
2<input type="radio" name="type" value="T" <?php if ($type == 'T') echo 'checked="checked"'; ?>" /> Teacher<br />